reinhard | 1 May 2007 10:38
Picon
Favicon

svn commit: r533963 - /cocoon/trunk/core/cocoon-core/src/test/java/org/apache/cocoon/components/source/impl/CachingSourceTestCase.java

Author: reinhard
Date: Tue May  1 01:38:25 2007
New Revision: 533963

URL: http://svn.apache.org/viewvc?view=rev&rev=533963
Log:
with Eclipse this already worked when using an expiry time of 1 sec. 
Maven seems to fail sometimes. Hope that 2 secs improve the situation.

Modified:
    cocoon/trunk/core/cocoon-core/src/test/java/org/apache/cocoon/components/source/impl/CachingSourceTestCase.java

Modified: cocoon/trunk/core/cocoon-core/src/test/java/org/apache/cocoon/components/source/impl/CachingSourceTestCase.java
URL: http://svn.apache.org/viewvc/cocoon/trunk/core/cocoon-core/src/test/java/org/apache/cocoon/components/source/impl/CachingSourceTestCase.java?view=diff&rev=533963&r1=533962&r2=533963
==============================================================================
---
cocoon/trunk/core/cocoon-core/src/test/java/org/apache/cocoon/components/source/impl/CachingSourceTestCase.java (original)
+++
cocoon/trunk/core/cocoon-core/src/test/java/org/apache/cocoon/components/source/impl/CachingSourceTestCase.java
Tue May  1 01:38:25 2007
 <at>  <at>  -70,7 +70,7  <at>  <at> 
     }

     public void testCachingURI() throws Exception {
-        String uri = "cached:http://slashdot.org/?cocoon:cache-expires=1";
+        String uri = "cached:http://slashdot.org/?cocoon:cache-expires=2";

         CachingSource source;

 <at>  <at>  -93,7 +93,7  <at>  <at> 
(Continue reading)

reinhard | 1 May 2007 13:35
Picon
Favicon

svn commit: r534014 [3/3] - in /cocoon/trunk/tools/cocoon-maven-plugin: ./ src/ src/changes/ src/main/java/org/apache/cocoon/maven/deployer/ src/main/java/org/apache/cocoon/maven/deployer/monolithic/ src/main/java/org/apache/cocoon/maven/deployer/servl...

Added: cocoon/trunk/tools/cocoon-maven-plugin/src/main/resources/org/apache/cocoon/maven/deployer/utils/web-app_2_3.dtd
URL: http://svn.apache.org/viewvc/cocoon/trunk/tools/cocoon-maven-plugin/src/main/resources/org/apache/cocoon/maven/deployer/utils/web-app_2_3.dtd?view=auto&rev=534014
==============================================================================
---
cocoon/trunk/tools/cocoon-maven-plugin/src/main/resources/org/apache/cocoon/maven/deployer/utils/web-app_2_3.dtd (added)
+++
cocoon/trunk/tools/cocoon-maven-plugin/src/main/resources/org/apache/cocoon/maven/deployer/utils/web-app_2_3.dtd
Tue May  1 04:35:26 2007
 <at>  <at>  -0,0 +1,1063  <at>  <at> 
+<!--
+Copyright (c) 2000 Sun Microsystems, Inc.,
+901 San Antonio Road,
+Palo Alto, California 94303, U.S.A.
+All rights reserved.
+
+Sun Microsystems, Inc. has intellectual property rights relating to
+technology embodied in the product that is described in this document.
+In particular, and without limitation, these intellectual property
+rights may include one or more of the U.S. patents listed at
+http://www.sun.com/patents and one or more additional patents or
+pending patent applications in the U.S. and in other countries.
+
+This document and the product to which it pertains are distributed
+under licenses restricting their use, copying, distribution, and
+decompilation.  This document may be reproduced and distributed but may
+not be changed without prior written authorization of Sun and its
+licensors, if any.
+
+Third-party software, including font technology, is copyrighted and
+licensed from Sun suppliers.
(Continue reading)

reinhard | 1 May 2007 13:35
Picon
Favicon

svn commit: r534014 [2/3] - in /cocoon/trunk/tools/cocoon-maven-plugin: ./ src/ src/changes/ src/main/java/org/apache/cocoon/maven/deployer/ src/main/java/org/apache/cocoon/maven/deployer/monolithic/ src/main/java/org/apache/cocoon/maven/deployer/servl...

Added: cocoon/trunk/tools/cocoon-maven-plugin/src/main/java/org/apache/cocoon/maven/deployer/servlet/ShieldedClassLoader.java
URL: http://svn.apache.org/viewvc/cocoon/trunk/tools/cocoon-maven-plugin/src/main/java/org/apache/cocoon/maven/deployer/servlet/ShieldedClassLoader.java?view=auto&rev=534014
==============================================================================
--- cocoon/trunk/tools/cocoon-maven-plugin/src/main/java/org/apache/cocoon/maven/deployer/servlet/ShieldedClassLoader.java (added)
+++ cocoon/trunk/tools/cocoon-maven-plugin/src/main/java/org/apache/cocoon/maven/deployer/servlet/ShieldedClassLoader.java Tue May  1 04:35:26 2007
 <at>  <at>  -0,0 +1,128  <at>  <at> 
+/*
+ * 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.cocoon.maven.deployer.servlet;
+
+import java.net.URL;
+import java.net.URLClassLoader;
+import java.net.URLStreamHandlerFactory;
+
+
+/**
(Continue reading)

reinhard | 1 May 2007 13:35
Picon
Favicon

svn commit: r534014 [1/3] - in /cocoon/trunk/tools/cocoon-maven-plugin: ./ src/ src/changes/ src/main/java/org/apache/cocoon/maven/deployer/ src/main/java/org/apache/cocoon/maven/deployer/monolithic/ src/main/java/org/apache/cocoon/maven/deployer/servl...

Author: reinhard
Date: Tue May  1 04:35:26 2007
New Revision: 534014

URL: http://svn.apache.org/viewvc?view=rev&rev=534014
Log:
Merging deployer plugin and reloading classloader plugin

Added:
    cocoon/trunk/tools/cocoon-maven-plugin/
      - copied from r531008, cocoon/trunk/tools/cocoon-rcl/cocoon-rcl-plugin/
    cocoon/trunk/tools/cocoon-maven-plugin/pom.xml
      - copied, changed from r533959, cocoon/trunk/tools/cocoon-rcl/cocoon-rcl-plugin/pom.xml
    cocoon/trunk/tools/cocoon-maven-plugin/src/
      - copied from r533959, cocoon/trunk/tools/cocoon-rcl/cocoon-rcl-plugin/src/
    cocoon/trunk/tools/cocoon-maven-plugin/src/main/java/org/apache/cocoon/maven/deployer/
    cocoon/trunk/tools/cocoon-maven-plugin/src/main/java/org/apache/cocoon/maven/deployer/AbstractDeployMojo.java   (with props)
    cocoon/trunk/tools/cocoon-maven-plugin/src/main/java/org/apache/cocoon/maven/deployer/DeployExplodedMojo.java   (with props)
    cocoon/trunk/tools/cocoon-maven-plugin/src/main/java/org/apache/cocoon/maven/deployer/DeployWarMojo.java   (with props)
    cocoon/trunk/tools/cocoon-maven-plugin/src/main/java/org/apache/cocoon/maven/deployer/WebApplicationRewriter.java   (with props)
    cocoon/trunk/tools/cocoon-maven-plugin/src/main/java/org/apache/cocoon/maven/deployer/monolithic/
    cocoon/trunk/tools/cocoon-maven-plugin/src/main/java/org/apache/cocoon/maven/deployer/monolithic/DeploymentException.java   (with props)
    cocoon/trunk/tools/cocoon-maven-plugin/src/main/java/org/apache/cocoon/maven/deployer/monolithic/FileAlreadyDeployedException.java   (with props)
    cocoon/trunk/tools/cocoon-maven-plugin/src/main/java/org/apache/cocoon/maven/deployer/monolithic/FileDeployer.java   (with props)
    cocoon/trunk/tools/cocoon-maven-plugin/src/main/java/org/apache/cocoon/maven/deployer/monolithic/MonolithicCocoonDeployer.java   (with props)
    cocoon/trunk/tools/cocoon-maven-plugin/src/main/java/org/apache/cocoon/maven/deployer/monolithic/RuleBasedZipExtractor.java   (with props)
    cocoon/trunk/tools/cocoon-maven-plugin/src/main/java/org/apache/cocoon/maven/deployer/monolithic/SingleFileDeployer.java   (with props)
    cocoon/trunk/tools/cocoon-maven-plugin/src/main/java/org/apache/cocoon/maven/deployer/monolithic/XPatchDeployer.java   (with props)
    cocoon/trunk/tools/cocoon-maven-plugin/src/main/java/org/apache/cocoon/maven/deployer/servlet/
    cocoon/trunk/tools/cocoon-maven-plugin/src/main/java/org/apache/cocoon/maven/deployer/servlet/ShieldedClassLoader.java   (with props)
(Continue reading)

reinhard | 1 May 2007 13:44
Picon
Favicon

svn commit: r534017 - in /cocoon/whiteboard/old-maven-plugins: ./ readme.txt

Author: reinhard
Date: Tue May  1 04:44:42 2007
New Revision: 534017

URL: http://svn.apache.org/viewvc?view=rev&rev=534017
Log:
keep the old maven plugins easily accessible for some time

Added:
    cocoon/whiteboard/old-maven-plugins/
    cocoon/whiteboard/old-maven-plugins/readme.txt   (with props)

Added: cocoon/whiteboard/old-maven-plugins/readme.txt
URL: http://svn.apache.org/viewvc/cocoon/whiteboard/old-maven-plugins/readme.txt?view=auto&rev=534017
==============================================================================
--- cocoon/whiteboard/old-maven-plugins/readme.txt (added)
+++ cocoon/whiteboard/old-maven-plugins/readme.txt Tue May  1 04:44:42 2007
 <at>  <at>  -0,0 +1,3  <at>  <at> 
+The deployer and the rcl plugin were merged into the cocoon-maven-plugin. Keep the originals here for
some time.
+
+2007-05-01
\ No newline at end of file

Propchange: cocoon/whiteboard/old-maven-plugins/readme.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cocoon/whiteboard/old-maven-plugins/readme.txt
------------------------------------------------------------------------------
(Continue reading)

reinhard | 1 May 2007 13:47
Picon
Favicon

svn commit: r534018 - in /cocoon: trunk/tools/cocoon-rcl/cocoon-rcl-plugin/ whiteboard/old-maven-plugins/cocoon-rcl-plugin/

Author: reinhard
Date: Tue May  1 04:47:14 2007
New Revision: 534018

URL: http://svn.apache.org/viewvc?view=rev&rev=534018
Log:
keep the old maven plugins easily accessible 
for some time

Added:
    cocoon/whiteboard/old-maven-plugins/cocoon-rcl-plugin/
      - copied from r534017, cocoon/trunk/tools/cocoon-rcl/cocoon-rcl-plugin/
Removed:
    cocoon/trunk/tools/cocoon-rcl/cocoon-rcl-plugin/

reinhard | 1 May 2007 13:48
Picon
Favicon

svn commit: r534019 - in /cocoon: trunk/tools/cocoon-block-deployer/ whiteboard/old-maven-plugins/cocoon-block-deployer/

Author: reinhard
Date: Tue May  1 04:48:16 2007
New Revision: 534019

URL: http://svn.apache.org/viewvc?view=rev&rev=534019
Log:
keep the old maven plugins easily accessible 
for some time

Added:
    cocoon/whiteboard/old-maven-plugins/cocoon-block-deployer/
      - copied from r534018, cocoon/trunk/tools/cocoon-block-deployer/
Removed:
    cocoon/trunk/tools/cocoon-block-deployer/

reinhard | 1 May 2007 13:52
Picon
Favicon

svn commit: r534020 - in /cocoon/trunk/tools: cocoon-rcl/pom.xml pom.xml

Author: reinhard
Date: Tue May  1 04:52:25 2007
New Revision: 534020

URL: http://svn.apache.org/viewvc?view=rev&rev=534020
Log:
modules were moved to whiteboard

Removed:
    cocoon/trunk/tools/cocoon-rcl/pom.xml
Modified:
    cocoon/trunk/tools/pom.xml

Modified: cocoon/trunk/tools/pom.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/tools/pom.xml?view=diff&rev=534020&r1=534019&r2=534020
==============================================================================
--- cocoon/trunk/tools/pom.xml (original)
+++ cocoon/trunk/tools/pom.xml Tue May  1 04:52:25 2007
 <at>  <at>  -37,11 +37,8  <at>  <at> 
   <modules>
     <module>archetypes/cocoon-22-archetype-block</module>
     <module>archetypes/cocoon-22-archetype-webapp</module>    
-    <module>cocoon-block-deployer/cocoon-deployer-plugin</module>
-    <module>cocoon-block-deployer/cocoon-deployer-plugin-demo</module>    
     <module>cocoon-maven-reports</module>
     <module>cocoon-rcl/cocoon-rcl-webapp-wrapper</module>
-    <module>cocoon-rcl/cocoon-rcl-plugin</module>
     <module>cocoon-rcl/cocoon-rcl-spring-reloader</module>        
     <module>cocoon-daisy-export-strategy</module>
   </modules>
(Continue reading)

reinhard | 1 May 2007 14:12
Picon
Favicon

svn commit: r534027 - in /cocoon/trunk: pom.xml tools/cocoon-maven-plugin/pom.xml

Author: reinhard
Date: Tue May  1 05:12:00 2007
New Revision: 534027

URL: http://svn.apache.org/viewvc?view=rev&rev=534027
Log:
rename documentation too

Modified:
    cocoon/trunk/pom.xml
    cocoon/trunk/tools/cocoon-maven-plugin/pom.xml

Modified: cocoon/trunk/pom.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/pom.xml?view=diff&rev=534027&r1=534026&r2=534027
==============================================================================
--- cocoon/trunk/pom.xml (original)
+++ cocoon/trunk/pom.xml Tue May  1 05:12:00 2007
 <at>  <at>  -67,7 +67,7  <at>  <at> 
         <enabled>false</enabled>
       </snapshots>
     </repository>
-<repository>
+    <repository>
       <id>reinhard-m2-snapshot-repository</id>
       <url>http://www.apache.org/~reinhard/m2-snapshot-repository</url>
       <releases>
 <at>  <at>  -2293,8 +2293,8  <at>  <at> 
               </collection>
               <!-- Maven plugins -->
               <collection>
(Continue reading)

reinhard | 1 May 2007 14:16
Picon
Favicon

svn commit: r534029 - /cocoon/trunk/site/pom.xml

Author: reinhard
Date: Tue May  1 05:16:02 2007
New Revision: 534029

URL: http://svn.apache.org/viewvc?view=rev&rev=534029
Log:
enable plugin module

Modified:
    cocoon/trunk/site/pom.xml

Modified: cocoon/trunk/site/pom.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/site/pom.xml?view=diff&rev=534029&r1=534028&r2=534029
==============================================================================
--- cocoon/trunk/site/pom.xml (original)
+++ cocoon/trunk/site/pom.xml Tue May  1 05:16:02 2007
 <at>  <at>  -20,110 +20,111  <at>  <at> 
 <!--+
     |  <at> version $Id$
     +-->
-<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>
-      <packaging>pom</packaging>
-      
(Continue reading)


Gmane