<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>commits@turbine.apache.org Archives</title>
<link rel="self" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/?format=atom"/>
<link href="http://mail-archives.apache.org/mod_mbox/turbine-commits/"/>
<id>http://mail-archives.apache.org/mod_mbox/turbine-commits/</id>
<updated>2009-12-09T11:30:09Z</updated>
<entry>
<title>svn commit: r885980 - in /turbine/fulcrum/trunk/hsqldb: ./ src/java/org/apache/fulcrum/hsqldb/ src/test/ src/test/org/apache/fulcrum/hsqldb/</title>
<author><name>sgoeschl@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200912.mbox/%3c20091201223725.0427F2388962@eris.apache.org%3e"/>
<id>urn:uuid:%3c20091201223725-0427F2388962@eris-apache-org%3e</id>
<updated>2009-12-01T22:37:24Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: sgoeschl
Date: Tue Dec  1 22:37:23 2009
New Revision: 885980

URL: http://svn.apache.org/viewvc?rev=885980&amp;view=rev
Log:
Preparing first release

Added:
    turbine/fulcrum/trunk/hsqldb/NOTICE.txt
    turbine/fulcrum/trunk/hsqldb/pom.xml
Modified:
    turbine/fulcrum/trunk/hsqldb/project.xml
    turbine/fulcrum/trunk/hsqldb/src/java/org/apache/fulcrum/hsqldb/HSQLService.java
    turbine/fulcrum/trunk/hsqldb/src/java/org/apache/fulcrum/hsqldb/HSQLServiceImpl.java
    turbine/fulcrum/trunk/hsqldb/src/test/TestComponentConfig.xml
    turbine/fulcrum/trunk/hsqldb/src/test/org/apache/fulcrum/hsqldb/HSQLServiceTest.java
    turbine/fulcrum/trunk/hsqldb/src/test/test.properties
    turbine/fulcrum/trunk/hsqldb/src/test/test.script

Added: turbine/fulcrum/trunk/hsqldb/NOTICE.txt
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/hsqldb/NOTICE.txt?rev=885980&amp;view=auto
==============================================================================
--- turbine/fulcrum/trunk/hsqldb/NOTICE.txt (added)
+++ turbine/fulcrum/trunk/hsqldb/NOTICE.txt Tue Dec  1 22:37:23 2009
@@ -0,0 +1,6 @@
+Turbine Fulcrum Spring
+Copyright 2002-2009 The Apache Software Foundation.
+
+This product includes software developed at
+The Apache Software Foundation (http://www.apache.org/).
+

Added: turbine/fulcrum/trunk/hsqldb/pom.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/hsqldb/pom.xml?rev=885980&amp;view=auto
==============================================================================
--- turbine/fulcrum/trunk/hsqldb/pom.xml (added)
+++ turbine/fulcrum/trunk/hsqldb/pom.xml Tue Dec  1 22:37:23 2009
@@ -0,0 +1,113 @@
+&lt;?xml version="1.0" encoding="UTF-8"?&gt;
+&lt;!--
+ 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.
+--&gt;
+&lt;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"&gt;
+  &lt;parent&gt;
+    &lt;groupId&gt;org.apache.fulcrum&lt;/groupId&gt;
+    &lt;artifactId&gt;fulcrum-parent&lt;/artifactId&gt;
+    &lt;version&gt;1&lt;/version&gt;
+  &lt;/parent&gt;
+
+  &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
+  &lt;artifactId&gt;fulcrum-hsqldb&lt;/artifactId&gt;
+  &lt;version&gt;1.0.0-SNAPSHOT&lt;/version&gt;
+  &lt;name&gt;Fulcrum HSQLDB&lt;/name&gt;
+  &lt;inceptionYear&gt;2005&lt;/inceptionYear&gt;
+  &lt;description&gt;Fulcrum HSQLDB Service&lt;/description&gt;
+  &lt;url&gt;http://turbine.apache.org/fulcrum/fulcrum-hsqldb&lt;/url&gt;
+		
+  &lt;scm&gt;
+    &lt;connection&gt;scm:svn:http://svn.apache.org/repos/asf/turbine/fulcrum/trunk/hsqldb/&lt;/connection&gt;
+    &lt;developerConnection&gt;scm:svn:https://svn.apache.org/repos/asf/turbine/fulcrum/trunk/hsqldb/&lt;/developerConnection&gt;
+    &lt;url&gt;http://svn.apache.org/viewcvs/turbine/fulcrum/trunk/hsqldb/&lt;/url&gt;
+  &lt;/scm&gt;
+
+  &lt;distributionManagement&gt;
+    &lt;site&gt;
+      &lt;id&gt;apache.website&lt;/id&gt;
+      &lt;name&gt;Fulcrum Website&lt;/name&gt;
+      &lt;url&gt;${fulcrum.deployment.protocol}://people.apache.org/www/turbine.apache.org/fulcrum/fulcrum-hsqldb/&lt;/url&gt;
+    &lt;/site&gt;    
+  &lt;/distributionManagement&gt;
+	
+  &lt;developers&gt;
+    &lt;developer&gt;
+      &lt;name&gt;Siegfried Goeschl&lt;/name&gt;
+      &lt;id&gt;sgoeschl&lt;/id&gt;
+      &lt;email&gt;sgoeschl@apache.org&lt;/email&gt;
+      &lt;organization /&gt;
+      &lt;roles&gt;
+        &lt;role&gt;Java Developer&lt;/role&gt;
+      &lt;/roles&gt;
+    &lt;/developer&gt;
+  &lt;/developers&gt;
+
+  &lt;dependencies&gt;
+    &lt;!-- testing dependencies --&gt;
+    &lt;dependency&gt;
+      &lt;groupId&gt;org.apache.fulcrum&lt;/groupId&gt;
+      &lt;artifactId&gt;fulcrum-testcontainer&lt;/artifactId&gt;
+      &lt;version&gt;1.0.6&lt;/version&gt;
+      &lt;scope&gt;test&lt;/scope&gt;
+    &lt;/dependency&gt;
+    &lt;dependency&gt;
+      &lt;groupId&gt;org.apache.fulcrum&lt;/groupId&gt;
+      &lt;artifactId&gt;fulcrum-yaafi&lt;/artifactId&gt;
+      &lt;version&gt;1.0.6&lt;/version&gt;
+      &lt;scope&gt;test&lt;/scope&gt;
+    &lt;/dependency&gt;
+    &lt;!-- project depdendencies --&gt;
+    &lt;dependency&gt;
+      &lt;groupId&gt;org.apache.avalon.framework&lt;/groupId&gt;
+      &lt;artifactId&gt;avalon-framework-api&lt;/artifactId&gt;
+      &lt;version&gt;4.3.1&lt;/version&gt;
+    &lt;/dependency&gt;
+    &lt;dependency&gt;
+      &lt;groupId&gt;org.hsqldb&lt;/groupId&gt;
+      &lt;artifactId&gt;hsqldb&lt;/artifactId&gt;
+      &lt;version&gt;1.8.0.10&lt;/version&gt;
+    &lt;/dependency&gt;
+  &lt;/dependencies&gt;
+
+  &lt;build&gt;
+    &lt;sourceDirectory&gt;${basedir}/src/java&lt;/sourceDirectory&gt;
+    &lt;testSourceDirectory&gt;${basedir}/src/test&lt;/testSourceDirectory&gt;
+  &lt;/build&gt;
+  
+  &lt;properties&gt;
+    &lt;!-- This bits are used for the staging directory --&gt;
+    &lt;fulcrum.release.version&gt;1.0.0&lt;/fulcrum.release.version&gt;
+    &lt;fulcrum.rc.version&gt;RC1&lt;/fulcrum.rc.version&gt;  
+  &lt;/properties&gt;  
+  
+  &lt;profiles&gt;
+    &lt;profile&gt;
+      &lt;id&gt;rc&lt;/id&gt;
+      &lt;distributionManagement&gt;
+        &lt;!-- Cannot define in parent ATM, see COMMONSSITE-26 --&gt;
+        &lt;site&gt;
+          &lt;id&gt;apache.website&lt;/id&gt;
+          &lt;name&gt;Apache Fulcrum Release Candidate Staging Site&lt;/name&gt;
+          &lt;url&gt;${fulcrum.deployment.protocol}://people.apache.org/www/turbine.apache.org/builds/fulcrum/${fulcrum.componentid}/${fulcrum.release.version}/${fulcrum.rc.version}/site&lt;/url&gt;
+        &lt;/site&gt;
+      &lt;/distributionManagement&gt;
+    &lt;/profile&gt;
+  &lt;/profiles&gt;
+  
+&lt;/project&gt;

Modified: turbine/fulcrum/trunk/hsqldb/project.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/hsqldb/project.xml?rev=885980&amp;r1=885979&amp;r2=885980&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/hsqldb/project.xml (original)
+++ turbine/fulcrum/trunk/hsqldb/project.xml Tue Dec  1 22:37:23 2009
@@ -28,7 +28,7 @@
     &lt;dependency&gt;
       &lt;groupId&gt;hsqldb&lt;/groupId&gt;
       &lt;artifactId&gt;hsqldb&lt;/artifactId&gt;
-      &lt;version&gt;1.8.0.7&lt;/version&gt;
+      &lt;version&gt;1.8.1.1&lt;/version&gt;
       &lt;url&gt;http://hsqldb.sourceforge.net/&lt;/url&gt;
     &lt;/dependency&gt;
 
@@ -36,13 +36,13 @@
     &lt;dependency&gt;
       &lt;groupId&gt;fulcrum&lt;/groupId&gt;
       &lt;artifactId&gt;fulcrum-testcontainer&lt;/artifactId&gt;
-      &lt;version&gt;1.0.5&lt;/version&gt;
+      &lt;version&gt;1.0.6&lt;/version&gt;
     &lt;/dependency&gt;
 
     &lt;dependency&gt;
       &lt;groupId&gt;fulcrum&lt;/groupId&gt;
       &lt;artifactId&gt;fulcrum-yaafi&lt;/artifactId&gt;
-      &lt;version&gt;1.0.5&lt;/version&gt;
+      &lt;version&gt;1.0.6&lt;/version&gt;
     &lt;/dependency&gt;
 
   &lt;/dependencies&gt;

Modified: turbine/fulcrum/trunk/hsqldb/src/java/org/apache/fulcrum/hsqldb/HSQLService.java
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/hsqldb/src/java/org/apache/fulcrum/hsqldb/HSQLService.java?rev=885980&amp;r1=885979&amp;r2=885980&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/hsqldb/src/java/org/apache/fulcrum/hsqldb/HSQLService.java (original)
+++ turbine/fulcrum/trunk/hsqldb/src/java/org/apache/fulcrum/hsqldb/HSQLService.java Tue Dec
 1 22:37:23 2009
@@ -50,7 +50,7 @@
     public void stop() throws Exception;
 
     /**
-     * Check if the server is running
+     * Check if the database server is running.
      *
      * @return the state of the hsqldb server
      */

Modified: turbine/fulcrum/trunk/hsqldb/src/java/org/apache/fulcrum/hsqldb/HSQLServiceImpl.java
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/hsqldb/src/java/org/apache/fulcrum/hsqldb/HSQLServiceImpl.java?rev=885980&amp;r1=885979&amp;r2=885980&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/hsqldb/src/java/org/apache/fulcrum/hsqldb/HSQLServiceImpl.java (original)
+++ turbine/fulcrum/trunk/hsqldb/src/java/org/apache/fulcrum/hsqldb/HSQLServiceImpl.java Tue
Dec  1 22:37:23 2009
@@ -49,7 +49,7 @@
  * &lt;dt&gt;trace&lt;/dt&gt;
  * &lt;dd&gt;(true/false) a flag enabling tracing in the hsql server.&lt;/dd&gt;
  * &lt;dt&gt;silent&lt;/dt&gt;
- * &lt;dd&gt;(true/false) a flag to control the logging output oh thr hsql server.&lt;/dd&gt;
+ * &lt;dd&gt;(true/false) a flag to control the logging output of the hsql server.&lt;/dd&gt;
  * &lt;dt&gt;start&lt;/dt&gt;
  * &lt;dd&gt;(true/false) when true the database is started at configuration time, and does
  * not need to be started under application control.&lt;/dd&gt;
@@ -87,11 +87,6 @@
         // nothing to do
     }
 
-    public boolean isRunning() {
-        // return true id server is online
-        return server.getState() == ServerConstants.SERVER_STATE_ONLINE;
-    }
-
     /**
      * @see org.apache.avalon.framework.configuration.Configurable#configure(org.apache.avalon.framework.configuration.Configuration)
      */
@@ -107,8 +102,8 @@
         this.serverProperties = new HsqlProperties();
         this.serverProperties.setProperty("server.database.0", cfg.getAttribute("database"));
         this.serverProperties.setProperty("server.dbname.0", cfg.getAttribute("dbname"));
-        this.serverProperties.setProperty("server.trace", cfg.getAttributeAsBoolean("trace"));
-        this.serverProperties.setProperty("server.silent", cfg.getAttributeAsBoolean("silent"));
+        this.serverProperties.setProperty("server.trace", cfg.getAttributeAsBoolean("trace",
false));
+        this.serverProperties.setProperty("server.silent", cfg.getAttributeAsBoolean("silent",
true));
         this.serverProperties.setProperty("server.port", cfg.getAttribute("port"));
         this.serverProperties.setProperty("server.tls", cfg.getAttribute("tls","false"));
     }
@@ -170,12 +165,27 @@
         this.serverProperties = null;
     }
 
+    /////////////////////////////////////////////////////////////////////////
+    // Service Interface Implementation
+    /////////////////////////////////////////////////////////////////////////
+
+    public boolean isRunning() {
+        // return true id server is online
+        return server.getState() == ServerConstants.SERVER_STATE_ONLINE;
+    }
+
+
+    /////////////////////////////////////////////////////////////////////////
+    // Service Implementation
+    /////////////////////////////////////////////////////////////////////////
+
     /**
-     * Poll the HSQLDB server for a state change
+     * Poll the HSQLDB server for a state change.
+     *
      * @param desiredState the state we are waiting for
+     * @param lim the number of 100ms iteration to wait for
      * @throws Exception something went wrong
      */
-
     private void pollForState( int desiredState, int lim )
     	throws Exception
     {
@@ -197,22 +207,23 @@
             Thread.sleep(100);
         }
 
-        if( isSuccessful == false )
+        if( !isSuccessful )
         {
+
+            Throwable serverError = this.server.getServerError();
             String msg = "Unable to change the HSQLDB server to state : " + desiredState;
 
-            if( this.server.getServerError() != null )
+            if( serverError != null )
             {
-                this.getLogger().error( msg, this.server.getServerError() );
+                this.getLogger().error( msg, serverError );
 
-	            if( this.server.getServerError() instanceof Exception )
+	            if( serverError instanceof Exception )
 	            {
-	                throw (Exception) this.server.getServerError();
+	                throw (Exception) serverError;
 	            }
-
-	            if( this.server.getServerError() instanceof Throwable )
+                else
 	            {
-	                throw new RuntimeException( this.server.getServerError().getMessage() );
+	                throw new RuntimeException( serverError.getMessage() );
 	            }
             }
             else

Modified: turbine/fulcrum/trunk/hsqldb/src/test/TestComponentConfig.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/hsqldb/src/test/TestComponentConfig.xml?rev=885980&amp;r1=885979&amp;r2=885980&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/hsqldb/src/test/TestComponentConfig.xml (original)
+++ turbine/fulcrum/trunk/hsqldb/src/test/TestComponentConfig.xml Tue Dec  1 22:37:23 2009
@@ -18,5 +18,5 @@
  under the License.
 --&gt;
 &lt;componentConfig&gt;
-    &lt;HSQLService database="./src/test/test" dbname="test" trace="true" silent="false"
port="9001" tls="false"/&gt;
+    &lt;HSQLService database="./src/test/test" dbname="test" trace="false" silent="true"
port="9001" tls="false"/&gt;
 &lt;/componentConfig&gt;

Modified: turbine/fulcrum/trunk/hsqldb/src/test/org/apache/fulcrum/hsqldb/HSQLServiceTest.java
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/hsqldb/src/test/org/apache/fulcrum/hsqldb/HSQLServiceTest.java?rev=885980&amp;r1=885979&amp;r2=885980&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/hsqldb/src/test/org/apache/fulcrum/hsqldb/HSQLServiceTest.java (original)
+++ turbine/fulcrum/trunk/hsqldb/src/test/org/apache/fulcrum/hsqldb/HSQLServiceTest.java Tue
Dec  1 22:37:23 2009
@@ -71,8 +71,9 @@
             );
     }
     /**
-     * Simple test that verify the select from the HSQLDB server
-     * @throws Exception
+     * Simple test that verify the select from the HSQLDB server.
+     *
+     * @throws Exception the test failed
      */
     public void testMe() throws Exception
     {
@@ -114,8 +115,6 @@
         assertFalse("Server is still running", service.isRunning());
     }
 
-    // @todo sgoeschl 2007-05-31 the SHUTDOWN sql command hangs starting with hsqldb-1.8.0.4
-    /**
     public void testShutdown() throws Exception {
 
         Connection conn = this.getConnection("test");
@@ -123,5 +122,4 @@
         stmt.execute("SHUTDOWN;");
         assertFalse("Server is still running", service.isRunning());
     }
-    */
 }

Modified: turbine/fulcrum/trunk/hsqldb/src/test/test.properties
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/hsqldb/src/test/test.properties?rev=885980&amp;r1=885979&amp;r2=885980&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/hsqldb/src/test/test.properties (original)
+++ turbine/fulcrum/trunk/hsqldb/src/test/test.properties Tue Dec  1 22:37:23 2009
@@ -1,36 +1,17 @@
-# 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.
-# HSQL database
-# Wed Nov 03 17:55:58 CET 2004
-hsqldb.cache_file_scale=1
-runtime.gc_interval=0
-hsqldb.first_identity=0
-version=1.7.2
-modified=no
+#HSQL Database Engine 1.8.0.10
+#Tue Dec 01 23:35:58 CET 2009
 hsqldb.script_format=0
-sql.enforce_size=false
-hsqldb.cache_size_scale=10
+runtime.gc_interval=0
+sql.enforce_strict_size=false
+hsqldb.cache_size_scale=8
+readonly=false
+hsqldb.nio_data_file=true
 hsqldb.cache_scale=14
-hsqldb.version=1.7.2
+version=1.8.0
+hsqldb.default_table_type=memory
+hsqldb.cache_file_scale=1
 hsqldb.log_size=200
-sql.enforce_strict_size=false
-readonly=true
-hsqldb.compatible_version=1.7.2
-hsqldb.original_version=1.7.2
-sql.compare_in_locale=false
-hsqldb.nio_data_file=false
+modified=no
 hsqldb.cache_version=1.7.0
+hsqldb.original_version=1.8.0
+hsqldb.compatible_version=1.8.0

Modified: turbine/fulcrum/trunk/hsqldb/src/test/test.script
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/hsqldb/src/test/test.script?rev=885980&amp;r1=885979&amp;r2=885980&amp;view=diff
==============================================================================
Binary files - no diff available.




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r885946 - /turbine/fulcrum/trunk/spring/pom.xml</title>
<author><name>sgoeschl@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200912.mbox/%3c20091201214122.259D623888C5@eris.apache.org%3e"/>
<id>urn:uuid:%3c20091201214122-259D623888C5@eris-apache-org%3e</id>
<updated>2009-12-01T21:41:22Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: sgoeschl
Date: Tue Dec  1 21:41:21 2009
New Revision: 885946

URL: http://svn.apache.org/viewvc?rev=885946&amp;view=rev
Log:
[maven-release-plugin] prepare for next development iteration

Modified:
    turbine/fulcrum/trunk/spring/pom.xml

Modified: turbine/fulcrum/trunk/spring/pom.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/spring/pom.xml?rev=885946&amp;r1=885945&amp;r2=885946&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/spring/pom.xml (original)
+++ turbine/fulcrum/trunk/spring/pom.xml Tue Dec  1 21:41:21 2009
@@ -7,16 +7,16 @@
 
   &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
   &lt;artifactId&gt;fulcrum-spring&lt;/artifactId&gt;
-  &lt;version&gt;1.0.0&lt;/version&gt;
+  &lt;version&gt;1.0.1-SNAPSHOT&lt;/version&gt;
   &lt;name&gt;Fulcrum Spring&lt;/name&gt;
   &lt;inceptionYear&gt;2008&lt;/inceptionYear&gt;
   &lt;description&gt;Fulcrum Spring Container Integration Service&lt;/description&gt;
   &lt;url&gt;http://turbine.apache.org/fulcrum/fulcrum-spring&lt;/url&gt;
 		
   &lt;scm&gt;
-    &lt;connection&gt;scm:svn:http://svn.apache.org/repos/asf/turbine/fulcrum/tags/FULCRUM_SPRING_1_0_0&lt;/connection&gt;
-    &lt;developerConnection&gt;scm:svn:https://svn.apache.org/repos/asf/turbine/fulcrum/tags/FULCRUM_SPRING_1_0_0&lt;/developerConnection&gt;
-    &lt;url&gt;http://svn.apache.org/viewcvs/turbine/fulcrum/tags/FULCRUM_SPRING_1_0_0&lt;/url&gt;
+    &lt;connection&gt;scm:svn:http://svn.apache.org/repos/asf/turbine/fulcrum/trunk/spring/&lt;/connection&gt;
+    &lt;developerConnection&gt;scm:svn:https://svn.apache.org/repos/asf/turbine/fulcrum/trunk/spring/&lt;/developerConnection&gt;
+    &lt;url&gt;http://svn.apache.org/viewcvs/turbine/fulcrum/trunk/spring/&lt;/url&gt;
   &lt;/scm&gt;
 
   &lt;distributionManagement&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r885945 - in /turbine/fulcrum/tags/FULCRUM_SPRING_1_0_0: ./ LICENSE.txt NOTICE.txt pom.xml src/test/springIntoAvalonApplicationContext.xml src/test/springIntoAvalonComponentRoles.xml xdocs/changes.xml xdocs/index.xml</title>
<author><name>sgoeschl@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200912.mbox/%3c20091201214036.D802223889E1@eris.apache.org%3e"/>
<id>urn:uuid:%3c20091201214036-D802223889E1@eris-apache-org%3e</id>
<updated>2009-12-01T21:40:36Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: sgoeschl
Date: Tue Dec  1 21:40:36 2009
New Revision: 885945

URL: http://svn.apache.org/viewvc?rev=885945&amp;view=rev
Log:
[maven-release-plugin]  copy for tag FULCRUM_SPRING_1_0_0

Added:
    turbine/fulcrum/tags/FULCRUM_SPRING_1_0_0/
      - copied from r785772, turbine/fulcrum/trunk/spring/
    turbine/fulcrum/tags/FULCRUM_SPRING_1_0_0/LICENSE.txt
      - copied unchanged from r885943, turbine/fulcrum/trunk/spring/LICENSE.txt
    turbine/fulcrum/tags/FULCRUM_SPRING_1_0_0/NOTICE.txt
      - copied unchanged from r885943, turbine/fulcrum/trunk/spring/NOTICE.txt
    turbine/fulcrum/tags/FULCRUM_SPRING_1_0_0/pom.xml
      - copied unchanged from r885944, turbine/fulcrum/trunk/spring/pom.xml
    turbine/fulcrum/tags/FULCRUM_SPRING_1_0_0/src/test/springIntoAvalonApplicationContext.xml
      - copied unchanged from r885941, turbine/fulcrum/trunk/spring/src/test/springIntoAvalonApplicationContext.xml
    turbine/fulcrum/tags/FULCRUM_SPRING_1_0_0/src/test/springIntoAvalonComponentRoles.xml
      - copied unchanged from r885941, turbine/fulcrum/trunk/spring/src/test/springIntoAvalonComponentRoles.xml
    turbine/fulcrum/tags/FULCRUM_SPRING_1_0_0/xdocs/changes.xml
      - copied unchanged from r885941, turbine/fulcrum/trunk/spring/xdocs/changes.xml
    turbine/fulcrum/tags/FULCRUM_SPRING_1_0_0/xdocs/index.xml
      - copied unchanged from r885941, turbine/fulcrum/trunk/spring/xdocs/index.xml



</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r885944 - /turbine/fulcrum/trunk/spring/pom.xml</title>
<author><name>sgoeschl@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200912.mbox/%3c20091201214015.2A16023888C5@eris.apache.org%3e"/>
<id>urn:uuid:%3c20091201214015-2A16023888C5@eris-apache-org%3e</id>
<updated>2009-12-01T21:40:15Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: sgoeschl
Date: Tue Dec  1 21:40:14 2009
New Revision: 885944

URL: http://svn.apache.org/viewvc?rev=885944&amp;view=rev
Log:
[maven-release-plugin] prepare release FULCRUM_SPRING_1_0_0

Modified:
    turbine/fulcrum/trunk/spring/pom.xml

Modified: turbine/fulcrum/trunk/spring/pom.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/spring/pom.xml?rev=885944&amp;r1=885943&amp;r2=885944&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/spring/pom.xml (original)
+++ turbine/fulcrum/trunk/spring/pom.xml Tue Dec  1 21:40:14 2009
@@ -1,24 +1,4 @@
-&lt;?xml version="1.0"?&gt;
-&lt;!--
-   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.
---&gt;
-&lt;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"&gt;
+&lt;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"&gt;
   &lt;parent&gt;
     &lt;groupId&gt;org.apache.fulcrum&lt;/groupId&gt;
     &lt;artifactId&gt;fulcrum-parent&lt;/artifactId&gt;
@@ -27,16 +7,16 @@
 
   &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
   &lt;artifactId&gt;fulcrum-spring&lt;/artifactId&gt;
-  &lt;version&gt;1.0.0-SNAPSHOT&lt;/version&gt;
+  &lt;version&gt;1.0.0&lt;/version&gt;
   &lt;name&gt;Fulcrum Spring&lt;/name&gt;
   &lt;inceptionYear&gt;2008&lt;/inceptionYear&gt;
   &lt;description&gt;Fulcrum Spring Container Integration Service&lt;/description&gt;
   &lt;url&gt;http://turbine.apache.org/fulcrum/fulcrum-spring&lt;/url&gt;
 		
   &lt;scm&gt;
-    &lt;connection&gt;scm:svn:http://svn.apache.org/repos/asf/turbine/fulcrum/trunk/spring/&lt;/connection&gt;
-    &lt;developerConnection&gt;scm:svn:https://svn.apache.org/repos/asf/turbine/fulcrum/trunk/spring/&lt;/developerConnection&gt;
-    &lt;url&gt;http://svn.apache.org/viewcvs/turbine/fulcrum/trunk/spring/&lt;/url&gt;
+    &lt;connection&gt;scm:svn:http://svn.apache.org/repos/asf/turbine/fulcrum/tags/FULCRUM_SPRING_1_0_0&lt;/connection&gt;
+    &lt;developerConnection&gt;scm:svn:https://svn.apache.org/repos/asf/turbine/fulcrum/tags/FULCRUM_SPRING_1_0_0&lt;/developerConnection&gt;
+    &lt;url&gt;http://svn.apache.org/viewcvs/turbine/fulcrum/tags/FULCRUM_SPRING_1_0_0&lt;/url&gt;
   &lt;/scm&gt;
 
   &lt;distributionManagement&gt;
@@ -52,7 +32,7 @@
       &lt;name&gt;Siegfried Goeschl&lt;/name&gt;
       &lt;id&gt;sgoeschl&lt;/id&gt;
       &lt;email&gt;sgoeschl@apache.org&lt;/email&gt;
-      &lt;organization&gt;&lt;/organization&gt;
+      &lt;organization /&gt;
       &lt;roles&gt;
         &lt;role&gt;Java Developer&lt;/role&gt;
       &lt;/roles&gt;
@@ -125,4 +105,4 @@
     &lt;/profile&gt;
   &lt;/profiles&gt;  
 
-&lt;/project&gt;
+&lt;/project&gt;
\ No newline at end of file




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r885943 - in /turbine/fulcrum/trunk/spring: LICENSE.txt NOTICE.txt</title>
<author><name>sgoeschl@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200912.mbox/%3c20091201213556.17F2A23888C5@eris.apache.org%3e"/>
<id>urn:uuid:%3c20091201213556-17F2A23888C5@eris-apache-org%3e</id>
<updated>2009-12-01T21:35:56Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: sgoeschl
Date: Tue Dec  1 21:35:55 2009
New Revision: 885943

URL: http://svn.apache.org/viewvc?rev=885943&amp;view=rev
Log:
Preparing RC1

Modified:
    turbine/fulcrum/trunk/spring/LICENSE.txt
    turbine/fulcrum/trunk/spring/NOTICE.txt

Modified: turbine/fulcrum/trunk/spring/LICENSE.txt
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/spring/LICENSE.txt?rev=885943&amp;r1=885942&amp;r2=885943&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/spring/LICENSE.txt (original)
+++ turbine/fulcrum/trunk/spring/LICENSE.txt Tue Dec  1 21:35:55 2009
@@ -1,6 +1,6 @@
 
                                  Apache License
-                           Version 2.0, January 2004
+                           Version 2.0, January 2009
                         http://www.apache.org/licenses/
 
    TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

Modified: turbine/fulcrum/trunk/spring/NOTICE.txt
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/spring/NOTICE.txt?rev=885943&amp;r1=885942&amp;r2=885943&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/spring/NOTICE.txt (original)
+++ turbine/fulcrum/trunk/spring/NOTICE.txt Tue Dec  1 21:35:55 2009
@@ -1,5 +1,5 @@
-Turbine Fulcrum YAAFI
-Copyright 2002-2008s The Apache Software Foundation.
+Turbine Fulcrum Spring
+Copyright 2002-2009 The Apache Software Foundation.
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r885941 - in /turbine/fulcrum/trunk/spring: pom.xml src/test/springIntoAvalonApplicationContext.xml src/test/springIntoAvalonComponentRoles.xml xdocs/changes.xml xdocs/index.xml</title>
<author><name>sgoeschl@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200912.mbox/%3c20091201213505.59156238899B@eris.apache.org%3e"/>
<id>urn:uuid:%3c20091201213505-59156238899B@eris-apache-org%3e</id>
<updated>2009-12-01T21:35:05Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: sgoeschl
Date: Tue Dec  1 21:35:04 2009
New Revision: 885941

URL: http://svn.apache.org/viewvc?rev=885941&amp;view=rev
Log:
Preparing RC1

Modified:
    turbine/fulcrum/trunk/spring/pom.xml
    turbine/fulcrum/trunk/spring/src/test/springIntoAvalonApplicationContext.xml
    turbine/fulcrum/trunk/spring/src/test/springIntoAvalonComponentRoles.xml
    turbine/fulcrum/trunk/spring/xdocs/changes.xml
    turbine/fulcrum/trunk/spring/xdocs/index.xml

Modified: turbine/fulcrum/trunk/spring/pom.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/spring/pom.xml?rev=885941&amp;r1=885940&amp;r2=885941&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/spring/pom.xml (original)
+++ turbine/fulcrum/trunk/spring/pom.xml Tue Dec  1 21:35:04 2009
@@ -66,12 +66,6 @@
       &lt;artifactId&gt;avalon-framework-api&lt;/artifactId&gt;
       &lt;version&gt;4.3.1&lt;/version&gt;
     &lt;/dependency&gt;
-    &lt;!-- Fulcrum dependecies --&gt;
-    &lt;dependency&gt;
-      &lt;groupId&gt;org.apache.fulcrum&lt;/groupId&gt;
-      &lt;artifactId&gt;fulcrum-servicemanager&lt;/artifactId&gt;
-      &lt;version&gt;1.0.0-SNAPSHOT&lt;/version&gt;
-    &lt;/dependency&gt;               
     &lt;!-- The YaafiContainerBean requires YAAFI --&gt;
     &lt;dependency&gt;
       &lt;groupId&gt;org.apache.fulcrum&lt;/groupId&gt;
@@ -96,7 +90,7 @@
     &lt;dependency&gt;
       &lt;groupId&gt;junit&lt;/groupId&gt;
       &lt;artifactId&gt;junit&lt;/artifactId&gt;
-      &lt;version&gt;3.8.1&lt;/version&gt;
+      &lt;version&gt;3.8.2&lt;/version&gt;
       &lt;scope&gt;test&lt;/scope&gt;
     &lt;/dependency&gt;
   &lt;/dependencies&gt;
@@ -110,8 +104,25 @@
     &lt;!-- Default configuration for compiler source and target JVM --&gt;
     &lt;maven.compile.source&gt;1.4&lt;/maven.compile.source&gt;
     &lt;maven.compile.target&gt;1.4&lt;/maven.compile.target&gt;
-    &lt;!-- the version to pick up --&gt;
-    &lt;spring.version&gt;1.2.9&lt;/spring.version&gt;    
+    &lt;!-- This bits are used for the staging directory --&gt;
+    &lt;fulcrum.release.version&gt;1.0.0&lt;/fulcrum.release.version&gt;
+    &lt;fulcrum.rc.version&gt;RC1&lt;/fulcrum.rc.version&gt;      
+    &lt;!-- the spring version to pick up --&gt;
+    &lt;spring.version&gt;2.5.6&lt;/spring.version&gt;    
   &lt;/properties&gt;  
+  
+  &lt;profiles&gt;
+    &lt;profile&gt;
+      &lt;id&gt;rc&lt;/id&gt;
+      &lt;distributionManagement&gt;
+        &lt;!-- Cannot define in parent ATM, see COMMONSSITE-26 --&gt;
+        &lt;site&gt;
+          &lt;id&gt;apache.website&lt;/id&gt;
+          &lt;name&gt;Apache Fulcrum Release Candidate Staging Site&lt;/name&gt;
+          &lt;url&gt;${fulcrum.deployment.protocol}://people.apache.org/www/turbine.apache.org/builds/fulcrum/${fulcrum.componentid}/${fulcrum.release.version}/${fulcrum.rc.version}/site&lt;/url&gt;
+        &lt;/site&gt;
+      &lt;/distributionManagement&gt;
+    &lt;/profile&gt;
+  &lt;/profiles&gt;  
 
 &lt;/project&gt;

Modified: turbine/fulcrum/trunk/spring/src/test/springIntoAvalonApplicationContext.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/spring/src/test/springIntoAvalonApplicationContext.xml?rev=885941&amp;r1=885940&amp;r2=885941&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/spring/src/test/springIntoAvalonApplicationContext.xml (original)
+++ turbine/fulcrum/trunk/spring/src/test/springIntoAvalonApplicationContext.xml Tue Dec 
1 21:35:04 2009
@@ -22,7 +22,7 @@
 
     &lt;!-- Get a hold on an Avalon Service Manager --&gt;
     &lt;bean id="avalonContainerBean" 
-      class="org.apache.fulcrum.servicemanager.ServiceManagerServiceImpl" 
+      class="org.apache.fulcrum.yaafi.service.servicemanager.ServiceManagerServiceImpl" 
       factory-method="getInstance"
     /&gt;
 

Modified: turbine/fulcrum/trunk/spring/src/test/springIntoAvalonComponentRoles.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/spring/src/test/springIntoAvalonComponentRoles.xml?rev=885941&amp;r1=885940&amp;r2=885941&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/spring/src/test/springIntoAvalonComponentRoles.xml (original)
+++ turbine/fulcrum/trunk/spring/src/test/springIntoAvalonComponentRoles.xml Tue Dec  1 21:35:04
2009
@@ -21,7 +21,7 @@
 &lt;role-list&gt;
     &lt;role
         name="serviceManagerService"
-        default-class="org.apache.fulcrum.servicemanager.ServiceManagerServiceImpl"
+        default-class="org.apache.fulcrum.yaafi.service.servicemanager.ServiceManagerServiceImpl"
     /&gt;
     &lt;role
         name="systemPropertyService"

Modified: turbine/fulcrum/trunk/spring/xdocs/changes.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/spring/xdocs/changes.xml?rev=885941&amp;r1=885940&amp;r2=885941&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/spring/xdocs/changes.xml (original)
+++ turbine/fulcrum/trunk/spring/xdocs/changes.xml Tue Dec  1 21:35:04 2009
@@ -24,7 +24,7 @@
   &lt;/properties&gt;
 
   &lt;body&gt;
-    &lt;release version="1.0.0-SNAPSHOT" date="as in SVN"&gt;
+    &lt;release version="1.0.0" date="2009-12-01"&gt;
       &lt;action dev="sgoeschl" type="add"&gt;
         First cut for integrating with the Spring framework.
       &lt;/action&gt;

Modified: turbine/fulcrum/trunk/spring/xdocs/index.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/spring/xdocs/index.xml?rev=885941&amp;r1=885940&amp;r2=885941&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/spring/xdocs/index.xml (original)
+++ turbine/fulcrum/trunk/spring/xdocs/index.xml Tue Dec  1 21:35:04 2009
@@ -158,6 +158,7 @@
           &lt;li&gt;Spring 1.2.9&lt;/li&gt;
           &lt;li&gt;Spring 2.0.8&lt;/li&gt;
           &lt;li&gt;Spring 2.5.4&lt;/li&gt;          
+          &lt;li&gt;Spring 2.5.6&lt;/li&gt;   
         &lt;/ul&gt;        
       &lt;/subsection&gt;
 




</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Created: (TRB-76) The PeerManagers of the TorqueSecurityService use the wrong database name in checkExists()</title>
<author><name>&quot;Thomas Vandahl (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200911.mbox/%3c1434818251.1258919679771.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1434818251-1258919679771-JavaMail-jira@brutus%3e</id>
<updated>2009-11-22T19:54:39Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
The PeerManagers of the TorqueSecurityService use the wrong database name in checkExists()
------------------------------------------------------------------------------------------

                 Key: TRB-76
                 URL: https://issues.apache.org/jira/browse/TRB-76
             Project: Turbine
          Issue Type: Bug
          Components: Turbine 2.3
    Affects Versions: Core 2.3.3
            Reporter: Thomas Vandahl
            Priority: Critical


In the *PeerManager classes, the checkExists() method uses the following code:

        Criteria criteria = new Criteria();
        criteria.addSelectColumn(getIdColumn());
        criteria.add(getNameColumn(), group.getName());

        List results = BasePeer.doSelect(criteria);

This leads to errors when the database used for the security classes is not the default database.
 The code should read:

        Criteria criteria = new Criteria();
        criteria.add(getNameColumn(), group.getName());

        List results = doSelect(criteria);


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Assigned: (TRB-76) The PeerManagers of the TorqueSecurityService use the wrong database name in checkExists()</title>
<author><name>&quot;Thomas Vandahl (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200911.mbox/%3c1551796583.1258919679948.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1551796583-1258919679948-JavaMail-jira@brutus%3e</id>
<updated>2009-11-22T19:54:39Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/TRB-76?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

Thomas Vandahl reassigned TRB-76:
---------------------------------

    Assignee: Thomas Vandahl

&gt; The PeerManagers of the TorqueSecurityService use the wrong database name in checkExists()
&gt; ------------------------------------------------------------------------------------------
&gt;
&gt;                 Key: TRB-76
&gt;                 URL: https://issues.apache.org/jira/browse/TRB-76
&gt;             Project: Turbine
&gt;          Issue Type: Bug
&gt;          Components: Turbine 2.3
&gt;    Affects Versions: Core 2.3.3
&gt;            Reporter: Thomas Vandahl
&gt;            Assignee: Thomas Vandahl
&gt;            Priority: Critical
&gt;
&gt; In the *PeerManager classes, the checkExists() method uses the following code:
&gt;         Criteria criteria = new Criteria();
&gt;         criteria.addSelectColumn(getIdColumn());
&gt;         criteria.add(getNameColumn(), group.getName());
&gt;         List results = BasePeer.doSelect(criteria);
&gt; This leads to errors when the database used for the security classes is not the default
database.
&gt;  The code should read:
&gt;         Criteria criteria = new Criteria();
&gt;         criteria.add(getNameColumn(), group.getName());
&gt;         List results = doSelect(criteria);

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Closed: (TRB-33) make fulcrum-upload</title>
<author><name>&quot;Thomas Vandahl (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200911.mbox/%3c1294206768.1258918959569.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1294206768-1258918959569-JavaMail-jira@brutus%3e</id>
<updated>2009-11-22T19:42:39Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/TRB-33?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

Thomas Vandahl closed TRB-33.
-----------------------------


Fixed in Fulcrum-Parser 1.0.2

&gt; make fulcrum-upload
&gt; -------------------
&gt;
&gt;                 Key: TRB-33
&gt;                 URL: https://issues.apache.org/jira/browse/TRB-33
&gt;             Project: Turbine
&gt;          Issue Type: Sub-task
&gt;          Components: Fulcrum
&gt;    Affects Versions: Core 2.3.2
&gt;            Reporter: Jürgen Hoffmann
&gt;            Assignee: Thomas Vandahl
&gt;            Priority: Trivial
&gt;         Attachments: fulcrum-upload-patch.txt
&gt;
&gt;
&gt; Make the upload Service expose the automatic configuration property. This is needed by
the 2.3.2 DefaultParameterParser Code to determine if we want to parse file uploads automatically
or not.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Closed: (TRB-32) Port Parser from t2.3.2 to 2.4m1</title>
<author><name>&quot;Thomas Vandahl (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200911.mbox/%3c877202406.1258918839649.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c877202406-1258918839649-JavaMail-jira@brutus%3e</id>
<updated>2009-11-22T19:40:39Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/TRB-32?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

Thomas Vandahl closed TRB-32.
-----------------------------


Fixed in Fulcrum-Parser 1.0.2

&gt; Port Parser from t2.3.2 to 2.4m1
&gt; --------------------------------
&gt;
&gt;                 Key: TRB-32
&gt;                 URL: https://issues.apache.org/jira/browse/TRB-32
&gt;             Project: Turbine
&gt;          Issue Type: Task
&gt;          Components: Core
&gt;            Reporter: Jürgen Hoffmann
&gt;            Assignee: Thomas Vandahl
&gt;             Fix For: Core 4.0
&gt;
&gt;         Attachments: fulcrum-parser-patch-2.txt, fulcrum-parser-patch.txt, turbine-trunk-patch.txt
&gt;
&gt;
&gt; Port the changes made to the Parameter Parser on the 2.3.2 Branch over to the equivalent
fulcrum component parser

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Closed: (TRB-19) Extend Fulcrum XSLT Service</title>
<author><name>&quot;Thomas Vandahl (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200911.mbox/%3c134868757.1258918839732.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c134868757-1258918839732-JavaMail-jira@brutus%3e</id>
<updated>2009-11-22T19:40:39Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/TRB-19?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

Thomas Vandahl closed TRB-19.
-----------------------------


Fixed in Fulcrum-XSLT 1.1.0

&gt; Extend Fulcrum XSLT Service
&gt; ---------------------------
&gt;
&gt;                 Key: TRB-19
&gt;                 URL: https://issues.apache.org/jira/browse/TRB-19
&gt;             Project: Turbine
&gt;          Issue Type: Improvement
&gt;          Components: Fulcrum
&gt;            Reporter: Thomas Vandahl
&gt;            Assignee: Scott Eade
&gt;         Attachments: fulcrum-xslt.diff
&gt;
&gt;
&gt; I ported my changes to the TurbineXSLTService over to Fulcrum.
&gt; This is what I did:
&gt; - Get rid of direct File() access in DefaultXSLTService and replace it with URL access.
The change also allows to place the repository of XSL files elsewhere. You can, for example,
define your style sheet path as "http://style.acme.com/"
&gt; - Add transform() methods having an additional parameter to forward a parameter set to
the XSLT. The parameters can be used in the style sheet.
&gt; - Addition of several JavaDocs
&gt; - Code formatting
&gt; - Fixed visibility issues
&gt; The Turbine 2.3.2 code base has additionally
&gt; - Replace the cache Map() with a LRUMap() to avoid infinite memory growth
&gt; I did not want to add a dependency on commons-collections just for this only purpose,
so I left that out.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Closed: (TRB-10)  Make Intake file uploads work in fulcrum</title>
<author><name>&quot;Thomas Vandahl (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200911.mbox/%3c1391719804.1258918719821.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c1391719804-1258918719821-JavaMail-jira@brutus%3e</id>
<updated>2009-11-22T19:38:39Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/TRB-10?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

Thomas Vandahl closed TRB-10.
-----------------------------


Fixed in Fulcrum-Intake 1.0.6

&gt;  Make Intake file uploads work in fulcrum
&gt; -----------------------------------------
&gt;
&gt;                 Key: TRB-10
&gt;                 URL: https://issues.apache.org/jira/browse/TRB-10
&gt;             Project: Turbine
&gt;          Issue Type: Improvement
&gt;          Components: Core, Fulcrum
&gt;    Affects Versions: Core 4.0
&gt;            Reporter: Scott Eade
&gt;            Assignee: Thomas Vandahl
&gt;            Priority: Minor
&gt;
&gt; init() in FileItemField invokes the parser's containsKey() method to determine whether
the incoming request contains a file item for the FileItemField. The containsKey() method
that gets invoked is inherited by DefaultParameterParser from BaseValueParser and searches
the "parameters" attribute also inherited from BaseValueParser. However, file items are kept
in DefaultParameterParser's "fileParameters" attribute. Hence, containsKey() never reports
"true" for file items.
&gt; My suggested fix is to simply add a containsKey() function to DefaultParameterParser,
which also searches "fileParameters":
&gt; public boolean containsKey(Object key)
&gt; {
&gt;   return super.containsKey(key) || fileParameters.containsKey(convert((String)key));
&gt; }
&gt; With this fix, file uploads for file upload fields marked as "required" work.
&gt; Scarab issue TTWS65 was created by Thomas Lopatic (thomas at lopatic dot de).

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Closed: (TRB-11) Intake, mapToObject, and using Interfaces</title>
<author><name>&quot;Thomas Vandahl (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200911.mbox/%3c2068464193.1258918719604.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c2068464193-1258918719604-JavaMail-jira@brutus%3e</id>
<updated>2009-11-22T19:38:39Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/TRB-11?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

Thomas Vandahl closed TRB-11.
-----------------------------


Fixed in Fulcrum-Intake 1.0.6

&gt; Intake, mapToObject, and using Interfaces
&gt; -----------------------------------------
&gt;
&gt;                 Key: TRB-11
&gt;                 URL: https://issues.apache.org/jira/browse/TRB-11
&gt;             Project: Turbine
&gt;          Issue Type: Improvement
&gt;          Components: Fulcrum
&gt;         Environment: PC / RedHat
&gt;            Reporter: Scott Eade
&gt;            Assignee: Thomas Vandahl
&gt;            Priority: Minor
&gt;         Attachments: Group.interfaces.diffs
&gt;
&gt;
&gt; This is/was bugzilla bug #12661. Moving it to Scarab.
&gt; Short version: Intake won't use interfaces for the mapTo 
&gt; Attached is a patch that provides this.
&gt; Details:
&gt; I've been using Intake quite successfully until a recent change I
&gt;  made in my code. The mapTo object is a configuration object that
&gt;  does the PropertyChange and VetoableChange JavaBean pattern and it
&gt;  got rather tedious. So I switched to using an dynamic Proxy
&gt; (java.lang.reflect.Proxy). Testing with regular Java classes it works
&gt; great.
&gt; Following the code, Intake.mapTo(Retrievable) uses the Retrievable's
&gt; classname (and superclasses) as the key into a Map for fields (and
&gt; ultimately their setter/getters. The dynamic Proxy is initialized by
&gt; providing an interface. Sun's implementation in the JDK auto-creates
&gt; a new class that implements the interface as well as extending Object
&gt; while naming the class Proxy0 (as in zero, not oh). Therefore, the
&gt; proxied object ends up with a name not known to Intake yet
&gt; implementing an interface. So Group.init(Retrievable)'s logic of
&gt; chasing the classes and superclasses won't find any fields for the
&gt; class.
&gt; Wow, from bugzilla to Scarab to JIRA.  Issue raised by Evan Koffler (evan@codezodiac.com).

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Closed: (TRB-68) Intake doesn't correctly parse the message of a rule or required-message from intake.xml</title>
<author><name>&quot;Thomas Vandahl (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200911.mbox/%3c918250542.1258918599741.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c918250542-1258918599741-JavaMail-jira@brutus%3e</id>
<updated>2009-11-22T19:36:39Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/TRB-68?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

Thomas Vandahl closed TRB-68.
-----------------------------


Fixed in Fulcrum-Intake 1.0.6

&gt; Intake doesn't correctly parse the message of a rule or required-message from intake.xml
&gt; ----------------------------------------------------------------------------------------
&gt;
&gt;                 Key: TRB-68
&gt;                 URL: https://issues.apache.org/jira/browse/TRB-68
&gt;             Project: Turbine
&gt;          Issue Type: Bug
&gt;          Components: Fulcrum
&gt;            Reporter: Ronny Völker
&gt;            Assignee: Thomas Vandahl
&gt;
&gt; The Method org.apache.fulcrum.intake.transform.XmlToAppData.caracters is buggy.
&gt; It assumes that the content of a rule element is delivered in one chunk, which violates
the contract of the method it overrides (see javadoc of org.xml.sax.Contenthandler.characters).
&gt; Example:
&gt; Rule-element: &lt;rule name="mask" value=".+@.+\..+"&gt;intake_EnterEmailValidAddress&lt;/rule&gt;
&gt; The content of the element is delivered in two chunks (two calls of XmlToAppData.caracters).
&gt; The first chunk contains "intake_EnterEmailValidA".
&gt; The second chunk contains "ddress".
&gt; As a result the message for the rule is set to "ddress" instead of "intake_EnterEmailValidAddress".
&gt; This problem may affect the parsing of any element of type "required-message" or "rule"
anywhere in intake.xml.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Closed: (TRB-74) IntegerValidator does not default to &quot;Entry was not a valid number&quot; if the entry does not contain a valid number.</title>
<author><name>&quot;Thomas Vandahl (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200911.mbox/%3c647450846.1258918599623.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c647450846-1258918599623-JavaMail-jira@brutus%3e</id>
<updated>2009-11-22T19:36:39Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

     [ https://issues.apache.org/jira/browse/TRB-74?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]

Thomas Vandahl closed TRB-74.
-----------------------------


Fixed in Fulcrum-Intake 1.0.6

&gt; IntegerValidator does not default to "Entry was not a valid number" if the entry does
not contain a valid number.
&gt; -----------------------------------------------------------------------------------------------------------------
&gt;
&gt;                 Key: TRB-74
&gt;                 URL: https://issues.apache.org/jira/browse/TRB-74
&gt;             Project: Turbine
&gt;          Issue Type: Bug
&gt;          Components: Fulcrum
&gt;    Affects Versions: Core 2.3.3
&gt;         Environment: Linux OS running turbine 2.3.3 &amp; tomcat 
&gt;            Reporter: Susi Berrington
&gt;            Assignee: Thomas Vandahl
&gt;            Priority: Minor
&gt;
&gt; We are using intake for our validation where possible and recently noticed that if the
intake.xml file specifies a field with type="int" and doesn't specify an "invalidNumber" rule,
i.e.:
&gt; &lt;group name="Config" key="ConfigKey" mapToObject="data.details.ConfigDetails"&gt;
&gt;          &lt;field name="Field" key="field" type="int" mapToProperty="Field"&gt;
&gt;                  &lt;rule name="minValue" value="0"&gt;Please enter a value between 0
and 100&lt;/rule&gt;
&gt;                  &lt;rule name="maxValue" value="100"&gt;Please enter a value between
0 and 100&lt;/rule&gt;
&gt;          &lt;/field&gt;
&gt;  &lt;/group&gt;
&gt; then there is no error message displayed when you call $intake.Config.Default.Field.Message.
 This is because this error message is only set in the org.apache.turbine.services.intake.validator.IntegerValidator
constructor that takes a Map and the org.apache.turbine.services.intake.model.Field class
which is creating the IntegerValidator calls the default constructor.
&gt; I notice that in 2.4 M1 javadoc this whole section of code is deprecated in favour of
package org.apache.fulcrum.intake.validator.IntegerValidator, etc. but looking at that source
code the defect is still in there too.
&gt; I've written this as a minor defect as the work around is to add the "invalidNumber"
to the field's rules but this isn't a preferred long term solution.
&gt; I think the best solution would be to initialize invalidNumberMessage to "Entry was not
a valid number" in NumberValidator as a safety net.  Then if any overriding class doesn't
create their own default error message at least there would be a generic one set.  And then
in IntegerValidator, LongValidator, etc. either get both constructors to set a default message
for invalidNumberMessage or try removing the default constructor and see if all the places
which call the default constructor could call the other constructor?

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r883126 - in /turbine/fulcrum/trunk/site/src: changes/changes.xml site/site.xml</title>
<author><name>tv@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200911.mbox/%3c20091122192711.0C59A23888DD@eris.apache.org%3e"/>
<id>urn:uuid:%3c20091122192711-0C59A23888DD@eris-apache-org%3e</id>
<updated>2009-11-22T19:27:10Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: tv
Date: Sun Nov 22 19:27:10 2009
New Revision: 883126

URL: http://svn.apache.org/viewvc?rev=883126&amp;view=rev
Log:
Moved intake component to the released components section.

Modified:
    turbine/fulcrum/trunk/site/src/changes/changes.xml
    turbine/fulcrum/trunk/site/src/site/site.xml

Modified: turbine/fulcrum/trunk/site/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/site/src/changes/changes.xml?rev=883126&amp;r1=883125&amp;r2=883126&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/site/src/changes/changes.xml (original)
+++ turbine/fulcrum/trunk/site/src/changes/changes.xml Sun Nov 22 19:27:10 2009
@@ -27,6 +27,9 @@
   &lt;body&gt;
     &lt;release version="3.0.0" date="2005-05-13"&gt;
      &lt;action dev="tv" type="update"&gt;
+       Moved intake component to the released components section.
+     &lt;/action&gt;
+     &lt;action dev="tv" type="update"&gt;
        Moved parser component to the released components section.
      &lt;/action&gt;
      &lt;action dev="sgoeschl" type="add"&gt;

Modified: turbine/fulcrum/trunk/site/src/site/site.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/site/src/site/site.xml?rev=883126&amp;r1=883125&amp;r2=883126&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/site/src/site/site.xml (original)
+++ turbine/fulcrum/trunk/site/src/site/site.xml Sun Nov 22 19:27:10 2009
@@ -50,6 +50,7 @@
       &lt;item name="Crypto"                href="/fulcrum-crypto/"/&gt;
       &lt;item name="DVSL"                  href="/fulcrum-dvsl/"/&gt;
       &lt;item name="Factory"               href="/fulcrum-factory/"/&gt;
+      &lt;item name="Intake"                href="/fulcrum-intake/"/&gt;
       &lt;item name="Localization"          href="/fulcrum-localization/"/&gt;
       &lt;item name="Mimetype"              href="/fulcrum-mimetype/"/&gt;
       &lt;item name="Pool"                  href="/fulcrum-pool/"/&gt;
@@ -84,7 +85,6 @@
       &lt;item name="Configuration"         href="/fulcrum-configuration-impl/"/&gt;
       &lt;item name="Groovy"                href="/fulcrum-groovy/"/&gt;
       &lt;item name="HsqlDB"                href="/fulcrum-hsqldb/"/&gt;      
-      &lt;item name="Intake"                href="/fulcrum-intake/"/&gt;
       &lt;item name="Jetty"      			 href="/fulcrum-jetty/"/&gt;      
       &lt;item name="PBE"                   href="/fulcrum-pbe/"/&gt;
       &lt;item name="ResourceManager"       href="/fulcrum-resourcemanager/"/&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>[jira] Created: (TRB-75) LDAPUser.setName is not implemented</title>
<author><name>&quot;jeremy burks (JIRA)&quot; &lt;jira@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200911.mbox/%3c468564127.1258486000183.JavaMail.jira@brutus%3e"/>
<id>urn:uuid:%3c468564127-1258486000183-JavaMail-jira@brutus%3e</id>
<updated>2009-11-17T19:26:40Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
LDAPUser.setName is not implemented
-----------------------------------

                 Key: TRB-75
                 URL: https://issues.apache.org/jira/browse/TRB-75
             Project: Turbine
          Issue Type: Bug
          Components: Turbine 2.3
    Affects Versions: Core 2.3.3
            Reporter: jeremy burks
            Priority: Critical


LDAPUser.setName(String name) is not implemented. LDAPUser.getName() returns the value of
LDAPUser.setUserName(). Additionally setUserName is deprecated.


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r833217 - /turbine/fulcrum/trunk/xslt/pom.xml</title>
<author><name>sgoeschl@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200911.mbox/%3c20091105222614.D472123888BD@eris.apache.org%3e"/>
<id>urn:uuid:%3c20091105222614-D472123888BD@eris-apache-org%3e</id>
<updated>2009-11-05T22:26:14Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: sgoeschl
Date: Thu Nov  5 22:26:14 2009
New Revision: 833217

URL: http://svn.apache.org/viewvc?rev=833217&amp;view=rev
Log:
[maven-release-plugin] prepare for next development iteration

Modified:
    turbine/fulcrum/trunk/xslt/pom.xml

Modified: turbine/fulcrum/trunk/xslt/pom.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/xslt/pom.xml?rev=833217&amp;r1=833216&amp;r2=833217&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/xslt/pom.xml (original)
+++ turbine/fulcrum/trunk/xslt/pom.xml Thu Nov  5 22:26:14 2009
@@ -7,16 +7,16 @@
 
   &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
   &lt;artifactId&gt;fulcrum-xslt&lt;/artifactId&gt;
-  &lt;version&gt;1.1.0&lt;/version&gt;
+  &lt;version&gt;1.1.1-SNAPSHOT&lt;/version&gt;
   &lt;name&gt;Fulcrum XSLT&lt;/name&gt;
   &lt;inceptionYear&gt;2005&lt;/inceptionYear&gt;
   &lt;description&gt;Fulcrum XSLT Service&lt;/description&gt;
   &lt;url&gt;http://turbine.apache.org/fulcrum/fulcrum-xslt&lt;/url&gt;
 		
   &lt;scm&gt;
-    &lt;connection&gt;scm:svn:http://svn.apache.org/repos/asf/turbine/fulcrum/tags/FULCRUM_XSLT_1_1_0&lt;/connection&gt;
-    &lt;developerConnection&gt;scm:svn:https://svn.apache.org/repos/asf/turbine/fulcrum/tags/FULCRUM_XSLT_1_1_0&lt;/developerConnection&gt;
-    &lt;url&gt;http://svn.apache.org/viewcvs/turbine/fulcrum/tags/FULCRUM_XSLT_1_1_0&lt;/url&gt;
+    &lt;connection&gt;scm:svn:http://svn.apache.org/repos/asf/turbine/fulcrum/trunk/xslt/&lt;/connection&gt;
+    &lt;developerConnection&gt;scm:svn:https://svn.apache.org/repos/asf/turbine/fulcrum/trunk/xslt/&lt;/developerConnection&gt;
+    &lt;url&gt;http://svn.apache.org/viewcvs/turbine/fulcrum/trunk/xslt/&lt;/url&gt;
   &lt;/scm&gt;
 
   &lt;distributionManagement&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r833216 - in /turbine/fulcrum/tags/FULCRUM_XSLT_1_1_0: ./ pom.xml</title>
<author><name>sgoeschl@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200911.mbox/%3c20091105222408.4591E23889E8@eris.apache.org%3e"/>
<id>urn:uuid:%3c20091105222408-4591E23889E8@eris-apache-org%3e</id>
<updated>2009-11-05T22:24:08Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: sgoeschl
Date: Thu Nov  5 22:24:07 2009
New Revision: 833216

URL: http://svn.apache.org/viewvc?rev=833216&amp;view=rev
Log:
[maven-release-plugin]  copy for tag FULCRUM_XSLT_1_1_0

Added:
    turbine/fulcrum/tags/FULCRUM_XSLT_1_1_0/
      - copied from r833214, turbine/fulcrum/trunk/xslt/
    turbine/fulcrum/tags/FULCRUM_XSLT_1_1_0/pom.xml
      - copied unchanged from r833215, turbine/fulcrum/trunk/xslt/pom.xml



</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r833215 - /turbine/fulcrum/trunk/xslt/pom.xml</title>
<author><name>sgoeschl@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200911.mbox/%3c20091105222353.DA8ED23888BD@eris.apache.org%3e"/>
<id>urn:uuid:%3c20091105222353-DA8ED23888BD@eris-apache-org%3e</id>
<updated>2009-11-05T22:23:53Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: sgoeschl
Date: Thu Nov  5 22:23:53 2009
New Revision: 833215

URL: http://svn.apache.org/viewvc?rev=833215&amp;view=rev
Log:
[maven-release-plugin] prepare release FULCRUM_XSLT_1_1_0

Modified:
    turbine/fulcrum/trunk/xslt/pom.xml

Modified: turbine/fulcrum/trunk/xslt/pom.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/xslt/pom.xml?rev=833215&amp;r1=833214&amp;r2=833215&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/xslt/pom.xml (original)
+++ turbine/fulcrum/trunk/xslt/pom.xml Thu Nov  5 22:23:53 2009
@@ -7,16 +7,16 @@
 
   &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
   &lt;artifactId&gt;fulcrum-xslt&lt;/artifactId&gt;
-  &lt;version&gt;1.1.0-SNAPSHOT&lt;/version&gt;
+  &lt;version&gt;1.1.0&lt;/version&gt;
   &lt;name&gt;Fulcrum XSLT&lt;/name&gt;
   &lt;inceptionYear&gt;2005&lt;/inceptionYear&gt;
   &lt;description&gt;Fulcrum XSLT Service&lt;/description&gt;
   &lt;url&gt;http://turbine.apache.org/fulcrum/fulcrum-xslt&lt;/url&gt;
 		
   &lt;scm&gt;
-    &lt;connection&gt;scm:svn:http://svn.apache.org/repos/asf/turbine/fulcrum/trunk/xslt/&lt;/connection&gt;
-    &lt;developerConnection&gt;scm:svn:https://svn.apache.org/repos/asf/turbine/fulcrum/trunk/xslt/&lt;/developerConnection&gt;
-    &lt;url&gt;http://svn.apache.org/viewcvs/turbine/fulcrum/trunk/xslt/&lt;/url&gt;
+    &lt;connection&gt;scm:svn:http://svn.apache.org/repos/asf/turbine/fulcrum/tags/FULCRUM_XSLT_1_1_0&lt;/connection&gt;
+    &lt;developerConnection&gt;scm:svn:https://svn.apache.org/repos/asf/turbine/fulcrum/tags/FULCRUM_XSLT_1_1_0&lt;/developerConnection&gt;
+    &lt;url&gt;http://svn.apache.org/viewcvs/turbine/fulcrum/tags/FULCRUM_XSLT_1_1_0&lt;/url&gt;
   &lt;/scm&gt;
 
   &lt;distributionManagement&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r833214 - in /turbine/fulcrum/trunk/xslt: pom.xml project.xml xdocs/changes.xml</title>
<author><name>sgoeschl@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200911.mbox/%3c20091105222134.10DA423888AD@eris.apache.org%3e"/>
<id>urn:uuid:%3c20091105222134-10DA423888AD@eris-apache-org%3e</id>
<updated>2009-11-05T22:21:33Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: sgoeschl
Date: Thu Nov  5 22:21:33 2009
New Revision: 833214

URL: http://svn.apache.org/viewvc?rev=833214&amp;view=rev
Log:
Preparing release candidate

Modified:
    turbine/fulcrum/trunk/xslt/pom.xml
    turbine/fulcrum/trunk/xslt/project.xml
    turbine/fulcrum/trunk/xslt/xdocs/changes.xml

Modified: turbine/fulcrum/trunk/xslt/pom.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/xslt/pom.xml?rev=833214&amp;r1=833213&amp;r2=833214&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/xslt/pom.xml (original)
+++ turbine/fulcrum/trunk/xslt/pom.xml Thu Nov  5 22:21:33 2009
@@ -7,7 +7,7 @@
 
   &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
   &lt;artifactId&gt;fulcrum-xslt&lt;/artifactId&gt;
-  &lt;version&gt;1.1.1-SNAPSHOT&lt;/version&gt;
+  &lt;version&gt;1.1.0-SNAPSHOT&lt;/version&gt;
   &lt;name&gt;Fulcrum XSLT&lt;/name&gt;
   &lt;inceptionYear&gt;2005&lt;/inceptionYear&gt;
   &lt;description&gt;Fulcrum XSLT Service&lt;/description&gt;
@@ -92,7 +92,7 @@
   &lt;properties&gt;
     &lt;!-- This bits are used for the staging directory --&gt;
     &lt;fulcrum.release.version&gt;1.1.0&lt;/fulcrum.release.version&gt;
-    &lt;fulcrum.rc.version&gt;RC1&lt;/fulcrum.rc.version&gt;  
+    &lt;fulcrum.rc.version&gt;RC2&lt;/fulcrum.rc.version&gt;  
   &lt;/properties&gt;  
   
   &lt;profiles&gt;

Modified: turbine/fulcrum/trunk/xslt/project.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/xslt/project.xml?rev=833214&amp;r1=833213&amp;r2=833214&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/xslt/project.xml (original)
+++ turbine/fulcrum/trunk/xslt/project.xml Thu Nov  5 22:21:33 2009
@@ -21,9 +21,14 @@
   &lt;extend&gt;${basedir}/../project.xml&lt;/extend&gt;
   &lt;id&gt;fulcrum-xslt&lt;/id&gt;
   &lt;name&gt;Fulcrum XSLT Component&lt;/name&gt;
-  &lt;currentVersion&gt;1.0.4-dev&lt;/currentVersion&gt;
+  &lt;currentVersion&gt;1.1.1-dev&lt;/currentVersion&gt;
   &lt;versions&gt;
     &lt;version&gt;
+      &lt;id&gt;1.1.0&lt;/id&gt;
+      &lt;name&gt;1.1.0&lt;/name&gt;
+      &lt;tag&gt;FULCRUM_XSLT_1_1_0&lt;/tag&gt;
+    &lt;/version&gt;
+    &lt;version&gt;
       &lt;id&gt;1.0.3&lt;/id&gt;
       &lt;name&gt;1.0.3&lt;/name&gt;
       &lt;tag&gt;FULCRUM_XSLT_1_0_3&lt;/tag&gt;
@@ -36,13 +41,13 @@
     &lt;dependency&gt;
       &lt;groupId&gt;fulcrum&lt;/groupId&gt;
       &lt;artifactId&gt;fulcrum-testcontainer&lt;/artifactId&gt;
-      &lt;version&gt;1.0.5&lt;/version&gt;
+      &lt;version&gt;1.0.6&lt;/version&gt;
     &lt;/dependency&gt;
 
     &lt;dependency&gt;
       &lt;groupId&gt;fulcrum&lt;/groupId&gt;
       &lt;artifactId&gt;fulcrum-yaafi&lt;/artifactId&gt;
-      &lt;version&gt;1.0.5&lt;/version&gt;
+      &lt;version&gt;1.0.6&lt;/version&gt;
     &lt;/dependency&gt;
 
 

Modified: turbine/fulcrum/trunk/xslt/xdocs/changes.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/xslt/xdocs/changes.xml?rev=833214&amp;r1=833213&amp;r2=833214&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/xslt/xdocs/changes.xml (original)
+++ turbine/fulcrum/trunk/xslt/xdocs/changes.xml Thu Nov  5 22:21:33 2009
@@ -23,7 +23,7 @@
     &lt;author email="epugh@opensourceconnections.com"&gt;Eric Pugh&lt;/author&gt;
   &lt;/properties&gt;
   &lt;body&gt;
-    &lt;release version="1.0.4" date="in Subversion"&gt;
+    &lt;release version="1.1.0" date="2009-11-06"&gt;
       &lt;action type="add" dev="sgoeschl" date="2009-11-05"&gt;
         Added an additional transform() method which takes no XML input
         document. 




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r833213 - /turbine/fulcrum/tags/FULCRUM_XSLT_1_1_0/</title>
<author><name>sgoeschl@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200911.mbox/%3c20091105222027.F144323888AD@eris.apache.org%3e"/>
<id>urn:uuid:%3c20091105222027-F144323888AD@eris-apache-org%3e</id>
<updated>2009-11-05T22:20:27Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: sgoeschl
Date: Thu Nov  5 22:20:27 2009
New Revision: 833213

URL: http://svn.apache.org/viewvc?rev=833213&amp;view=rev
Log:
Forgot to update the changes.xml so I need to cut a second RC (aka release gymnstics)

Removed:
    turbine/fulcrum/tags/FULCRUM_XSLT_1_1_0/



</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r833207 - /turbine/fulcrum/trunk/xslt/pom.xml</title>
<author><name>sgoeschl@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200911.mbox/%3c20091105220505.5822B23888AD@eris.apache.org%3e"/>
<id>urn:uuid:%3c20091105220505-5822B23888AD@eris-apache-org%3e</id>
<updated>2009-11-05T22:05:05Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: sgoeschl
Date: Thu Nov  5 22:05:04 2009
New Revision: 833207

URL: http://svn.apache.org/viewvc?rev=833207&amp;view=rev
Log:
[maven-release-plugin] prepare for next development iteration

Modified:
    turbine/fulcrum/trunk/xslt/pom.xml

Modified: turbine/fulcrum/trunk/xslt/pom.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/xslt/pom.xml?rev=833207&amp;r1=833206&amp;r2=833207&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/xslt/pom.xml (original)
+++ turbine/fulcrum/trunk/xslt/pom.xml Thu Nov  5 22:05:04 2009
@@ -7,16 +7,16 @@
 
   &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
   &lt;artifactId&gt;fulcrum-xslt&lt;/artifactId&gt;
-  &lt;version&gt;1.1.0&lt;/version&gt;
+  &lt;version&gt;1.1.1-SNAPSHOT&lt;/version&gt;
   &lt;name&gt;Fulcrum XSLT&lt;/name&gt;
   &lt;inceptionYear&gt;2005&lt;/inceptionYear&gt;
   &lt;description&gt;Fulcrum XSLT Service&lt;/description&gt;
   &lt;url&gt;http://turbine.apache.org/fulcrum/fulcrum-xslt&lt;/url&gt;
 		
   &lt;scm&gt;
-    &lt;connection&gt;scm:svn:http://svn.apache.org/repos/asf/turbine/fulcrum/tags/FULCRUM_XSLT_1_1_0&lt;/connection&gt;
-    &lt;developerConnection&gt;scm:svn:https://svn.apache.org/repos/asf/turbine/fulcrum/tags/FULCRUM_XSLT_1_1_0&lt;/developerConnection&gt;
-    &lt;url&gt;http://svn.apache.org/viewcvs/turbine/fulcrum/tags/FULCRUM_XSLT_1_1_0&lt;/url&gt;
+    &lt;connection&gt;scm:svn:http://svn.apache.org/repos/asf/turbine/fulcrum/trunk/xslt/&lt;/connection&gt;
+    &lt;developerConnection&gt;scm:svn:https://svn.apache.org/repos/asf/turbine/fulcrum/trunk/xslt/&lt;/developerConnection&gt;
+    &lt;url&gt;http://svn.apache.org/viewcvs/turbine/fulcrum/trunk/xslt/&lt;/url&gt;
   &lt;/scm&gt;
 
   &lt;distributionManagement&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r833204 - in /turbine/fulcrum/tags/FULCRUM_XSLT_1_1_0: ./ pom.xml</title>
<author><name>sgoeschl@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200911.mbox/%3c20091105220251.7FEDF2388905@eris.apache.org%3e"/>
<id>urn:uuid:%3c20091105220251-7FEDF2388905@eris-apache-org%3e</id>
<updated>2009-11-05T22:02:51Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: sgoeschl
Date: Thu Nov  5 22:02:51 2009
New Revision: 833204

URL: http://svn.apache.org/viewvc?rev=833204&amp;view=rev
Log:
[maven-release-plugin]  copy for tag FULCRUM_XSLT_1_1_0

Added:
    turbine/fulcrum/tags/FULCRUM_XSLT_1_1_0/
      - copied from r833198, turbine/fulcrum/trunk/xslt/
    turbine/fulcrum/tags/FULCRUM_XSLT_1_1_0/pom.xml
      - copied unchanged from r833203, turbine/fulcrum/trunk/xslt/pom.xml



</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r833203 - /turbine/fulcrum/trunk/xslt/pom.xml</title>
<author><name>sgoeschl@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200911.mbox/%3c20091105220236.9DA6A23889BB@eris.apache.org%3e"/>
<id>urn:uuid:%3c20091105220236-9DA6A23889BB@eris-apache-org%3e</id>
<updated>2009-11-05T22:02:36Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: sgoeschl
Date: Thu Nov  5 22:02:36 2009
New Revision: 833203

URL: http://svn.apache.org/viewvc?rev=833203&amp;view=rev
Log:
[maven-release-plugin] prepare release FULCRUM_XSLT_1_1_0

Modified:
    turbine/fulcrum/trunk/xslt/pom.xml

Modified: turbine/fulcrum/trunk/xslt/pom.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/xslt/pom.xml?rev=833203&amp;r1=833202&amp;r2=833203&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/xslt/pom.xml (original)
+++ turbine/fulcrum/trunk/xslt/pom.xml Thu Nov  5 22:02:36 2009
@@ -1,24 +1,4 @@
-&lt;?xml version="1.0"?&gt;
-&lt;!--
-   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.
---&gt;
-&lt;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"&gt;
+&lt;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"&gt;
   &lt;parent&gt;
     &lt;groupId&gt;org.apache.fulcrum&lt;/groupId&gt;
     &lt;artifactId&gt;fulcrum-parent&lt;/artifactId&gt;
@@ -27,16 +7,16 @@
 
   &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
   &lt;artifactId&gt;fulcrum-xslt&lt;/artifactId&gt;
-  &lt;version&gt;1.1.0-SNAPSHOT&lt;/version&gt;
+  &lt;version&gt;1.1.0&lt;/version&gt;
   &lt;name&gt;Fulcrum XSLT&lt;/name&gt;
   &lt;inceptionYear&gt;2005&lt;/inceptionYear&gt;
   &lt;description&gt;Fulcrum XSLT Service&lt;/description&gt;
   &lt;url&gt;http://turbine.apache.org/fulcrum/fulcrum-xslt&lt;/url&gt;
 		
   &lt;scm&gt;
-    &lt;connection&gt;scm:svn:http://svn.apache.org/repos/asf/turbine/fulcrum/trunk/xslt/&lt;/connection&gt;
-    &lt;developerConnection&gt;scm:svn:https://svn.apache.org/repos/asf/turbine/fulcrum/trunk/xslt/&lt;/developerConnection&gt;
-    &lt;url&gt;http://svn.apache.org/viewcvs/turbine/fulcrum/trunk/xslt/&lt;/url&gt;
+    &lt;connection&gt;scm:svn:http://svn.apache.org/repos/asf/turbine/fulcrum/tags/FULCRUM_XSLT_1_1_0&lt;/connection&gt;
+    &lt;developerConnection&gt;scm:svn:https://svn.apache.org/repos/asf/turbine/fulcrum/tags/FULCRUM_XSLT_1_1_0&lt;/developerConnection&gt;
+    &lt;url&gt;http://svn.apache.org/viewcvs/turbine/fulcrum/tags/FULCRUM_XSLT_1_1_0&lt;/url&gt;
   &lt;/scm&gt;
 
   &lt;distributionManagement&gt;
@@ -66,7 +46,7 @@
       &lt;name&gt;Siegfried Goeschl&lt;/name&gt;
       &lt;id&gt;sgoeschl&lt;/id&gt;
       &lt;email&gt;sgoeschl@apache.org&lt;/email&gt;
-      &lt;organization&gt;&lt;/organization&gt;
+      &lt;organization /&gt;
       &lt;roles&gt;
         &lt;role&gt;Java Developer&lt;/role&gt;
       &lt;/roles&gt;
@@ -75,7 +55,7 @@
       &lt;name&gt;Thomas Vandahl&lt;/name&gt;
       &lt;id&gt;tv&lt;/id&gt;
       &lt;email&gt;tv@apache.org&lt;/email&gt;
-      &lt;organization&gt;&lt;/organization&gt;
+      &lt;organization /&gt;
       &lt;roles&gt;
         &lt;role&gt;Java Developer&lt;/role&gt;
       &lt;/roles&gt;
@@ -129,4 +109,4 @@
     &lt;/profile&gt;
   &lt;/profiles&gt;
   
-&lt;/project&gt;
+&lt;/project&gt;
\ No newline at end of file




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r833199 - /turbine/fulcrum/trunk/xslt/pom.xml</title>
<author><name>sgoeschl@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200911.mbox/%3c20091105215916.52A0423888FE@eris.apache.org%3e"/>
<id>urn:uuid:%3c20091105215916-52A0423888FE@eris-apache-org%3e</id>
<updated>2009-11-05T21:59:16Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: sgoeschl
Date: Thu Nov  5 21:59:15 2009
New Revision: 833199

URL: http://svn.apache.org/viewvc?rev=833199&amp;view=rev
Log:
Preparing release candidate

Modified:
    turbine/fulcrum/trunk/xslt/pom.xml

Modified: turbine/fulcrum/trunk/xslt/pom.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/xslt/pom.xml?rev=833199&amp;r1=833198&amp;r2=833199&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/xslt/pom.xml (original)
+++ turbine/fulcrum/trunk/xslt/pom.xml Thu Nov  5 21:59:15 2009
@@ -27,7 +27,7 @@
 
   &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
   &lt;artifactId&gt;fulcrum-xslt&lt;/artifactId&gt;
-  &lt;version&gt;1.0.4-SNAPSHOT&lt;/version&gt;
+  &lt;version&gt;1.1.0-SNAPSHOT&lt;/version&gt;
   &lt;name&gt;Fulcrum XSLT&lt;/name&gt;
   &lt;inceptionYear&gt;2005&lt;/inceptionYear&gt;
   &lt;description&gt;Fulcrum XSLT Service&lt;/description&gt;
@@ -108,5 +108,25 @@
     &lt;sourceDirectory&gt;${basedir}/src/java&lt;/sourceDirectory&gt;
     &lt;testSourceDirectory&gt;${basedir}/src/test&lt;/testSourceDirectory&gt;
   &lt;/build&gt;
-	
+  
+  &lt;properties&gt;
+    &lt;!-- This bits are used for the staging directory --&gt;
+    &lt;fulcrum.release.version&gt;1.1.0&lt;/fulcrum.release.version&gt;
+    &lt;fulcrum.rc.version&gt;RC1&lt;/fulcrum.rc.version&gt;  
+  &lt;/properties&gt;  
+  
+  &lt;profiles&gt;
+    &lt;profile&gt;
+      &lt;id&gt;rc&lt;/id&gt;
+      &lt;distributionManagement&gt;
+        &lt;!-- Cannot define in parent ATM, see COMMONSSITE-26 --&gt;
+        &lt;site&gt;
+          &lt;id&gt;apache.website&lt;/id&gt;
+          &lt;name&gt;Apache Fulcrum Release Candidate Staging Site&lt;/name&gt;
+          &lt;url&gt;${fulcrum.deployment.protocol}://people.apache.org/www/turbine.apache.org/builds/fulcrum/${fulcrum.componentid}/${fulcrum.release.version}/${fulcrum.rc.version}/site&lt;/url&gt;
+        &lt;/site&gt;
+      &lt;/distributionManagement&gt;
+    &lt;/profile&gt;
+  &lt;/profiles&gt;
+  
 &lt;/project&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r833103 - in /turbine/fulcrum/trunk/xslt: src/java/org/apache/fulcrum/xslt/ src/test/xslt/ xdocs/</title>
<author><name>sgoeschl@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200911.mbox/%3c20091105175611.7A21723888D1@eris.apache.org%3e"/>
<id>urn:uuid:%3c20091105175611-7A21723888D1@eris-apache-org%3e</id>
<updated>2009-11-05T17:56:11Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: sgoeschl
Date: Thu Nov  5 17:56:10 2009
New Revision: 833103

URL: http://svn.apache.org/viewvc?rev=833103&amp;view=rev
Log:
Cleaning up the project

Modified:
    turbine/fulcrum/trunk/xslt/src/java/org/apache/fulcrum/xslt/DefaultXSLTService.java
    turbine/fulcrum/trunk/xslt/src/java/org/apache/fulcrum/xslt/XSLTService.java
    turbine/fulcrum/trunk/xslt/src/java/org/apache/fulcrum/xslt/XSLTServiceFacade.java
    turbine/fulcrum/trunk/xslt/src/test/xslt/hello.xslt
    turbine/fulcrum/trunk/xslt/src/test/xslt/identity.xslt
    turbine/fulcrum/trunk/xslt/xdocs/changes.xml
    turbine/fulcrum/trunk/xslt/xdocs/index.xml

Modified: turbine/fulcrum/trunk/xslt/src/java/org/apache/fulcrum/xslt/DefaultXSLTService.java
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/xslt/src/java/org/apache/fulcrum/xslt/DefaultXSLTService.java?rev=833103&amp;r1=833102&amp;r2=833103&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/xslt/src/java/org/apache/fulcrum/xslt/DefaultXSLTService.java (original)
+++ turbine/fulcrum/trunk/xslt/src/java/org/apache/fulcrum/xslt/DefaultXSLTService.java Thu
Nov  5 17:56:10 2009
@@ -61,7 +61,6 @@
  * @author &lt;a href="mailto:rubys@us.ibm.com"&gt;Sam Ruby&lt;/a&gt;
  * @author &lt;a href="mailto:epugh@opensourceconnections.com"&gt;Eric Pugh&lt;/a&gt;
  * @author &lt;a href="mailto:tv@apache.org"&gt;Thomas Vandahl&lt;/a&gt;
- * @version $Id$
  */
 public class DefaultXSLTService extends AbstractLogEnabled implements
         XSLTService, Initializable, Configurable, Contextualizable, Serviceable

Modified: turbine/fulcrum/trunk/xslt/src/java/org/apache/fulcrum/xslt/XSLTService.java
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/xslt/src/java/org/apache/fulcrum/xslt/XSLTService.java?rev=833103&amp;r1=833102&amp;r2=833103&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/xslt/src/java/org/apache/fulcrum/xslt/XSLTService.java (original)
+++ turbine/fulcrum/trunk/xslt/src/java/org/apache/fulcrum/xslt/XSLTService.java Thu Nov 
5 17:56:10 2009
@@ -32,7 +32,6 @@
  *
  * @author &lt;a href="mailto:leon@opticode.co.za"&gt;Leon Messerschmidt&lt;/a&gt;
  * @author &lt;a href="mailto:tv@apache.org"&gt;Thomas Vandahl&lt;/a&gt;
- * @version $Id$
  */
 public interface XSLTService
 {

Modified: turbine/fulcrum/trunk/xslt/src/java/org/apache/fulcrum/xslt/XSLTServiceFacade.java
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/xslt/src/java/org/apache/fulcrum/xslt/XSLTServiceFacade.java?rev=833103&amp;r1=833102&amp;r2=833103&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/xslt/src/java/org/apache/fulcrum/xslt/XSLTServiceFacade.java (original)
+++ turbine/fulcrum/trunk/xslt/src/java/org/apache/fulcrum/xslt/XSLTServiceFacade.java Thu
Nov  5 17:56:10 2009
@@ -30,7 +30,6 @@
  *
  * @author &lt;a href="mailto:leon@opticode.co.za"&gt;Leon Messerschmidt&lt;/a&gt;
  * @author &lt;a href="mailto:tv@apache.org"&gt;Thomas Vandahl&lt;/a&gt;
- * @version $Id$
  */
 public class XSLTServiceFacade
 {

Modified: turbine/fulcrum/trunk/xslt/src/test/xslt/hello.xslt
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/xslt/src/test/xslt/hello.xslt?rev=833103&amp;r1=833102&amp;r2=833103&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/xslt/src/test/xslt/hello.xslt (original)
+++ turbine/fulcrum/trunk/xslt/src/test/xslt/hello.xslt Thu Nov  5 17:56:10 2009
@@ -1,5 +1,22 @@
 &lt;?xml version="1.0" encoding="UTF-8"?&gt;
+&lt;!--
+ 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.
+ --&gt;
 &lt;html xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xsl:version="1.0"&gt;
     &lt;xsl:param name="name"/&gt;
     &lt;body&gt;

Modified: turbine/fulcrum/trunk/xslt/src/test/xslt/identity.xslt
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/xslt/src/test/xslt/identity.xslt?rev=833103&amp;r1=833102&amp;r2=833103&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/xslt/src/test/xslt/identity.xslt (original)
+++ turbine/fulcrum/trunk/xslt/src/test/xslt/identity.xslt Thu Nov  5 17:56:10 2009
@@ -1,4 +1,22 @@
 &lt;?xml version="1.0" encoding="UTF-8"?&gt;
+&lt;!--
+ 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.
+ --&gt;
 &lt;xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"&gt;
     
     &lt;xsl:template match="@*|node()"&gt;

Modified: turbine/fulcrum/trunk/xslt/xdocs/changes.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/xslt/xdocs/changes.xml?rev=833103&amp;r1=833102&amp;r2=833103&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/xslt/xdocs/changes.xml (original)
+++ turbine/fulcrum/trunk/xslt/xdocs/changes.xml Thu Nov  5 17:56:10 2009
@@ -24,6 +24,10 @@
   &lt;/properties&gt;
   &lt;body&gt;
     &lt;release version="1.0.4" date="in Subversion"&gt;
+      &lt;action type="add" dev="sgoeschl" date="2009-11-05"&gt;
+        Added an additional transform() method which takes no XML input
+        document. 
+      &lt;/action&gt;
       &lt;action type="add" dev="sgoeschl" date="2009-10-14"&gt;
         Added a regression test which really does a XSL transformation.
       &lt;/action&gt;

Modified: turbine/fulcrum/trunk/xslt/xdocs/index.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/xslt/xdocs/index.xml?rev=833103&amp;r1=833102&amp;r2=833103&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/xslt/xdocs/index.xml (original)
+++ turbine/fulcrum/trunk/xslt/xdocs/index.xml Thu Nov  5 17:56:10 2009
@@ -42,7 +42,7 @@
       &lt;p&gt;And here is the configuration:&lt;/p&gt;
       &lt;source&gt;
         &lt;![CDATA[
-        &lt;xslt path="/WEB-INF/stylesheets" cache="true"/&gt;
+&lt;xslt path="/WEB-INF/stylesheets" cache="true"/&gt;
     ]]&gt;
 &lt;/source&gt;
     &lt;/section&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r833099 - in /turbine/fulcrum/trunk/xslt/src: java/org/apache/fulcrum/xslt/ test/org/apache/fulcrum/xslt/ test/xslt/</title>
<author><name>sgoeschl@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200911.mbox/%3c20091105174626.A17442388864@eris.apache.org%3e"/>
<id>urn:uuid:%3c20091105174626-A17442388864@eris-apache-org%3e</id>
<updated>2009-11-05T17:46:26Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: sgoeschl
Date: Thu Nov  5 17:46:25 2009
New Revision: 833099

URL: http://svn.apache.org/viewvc?rev=833099&amp;view=rev
Log:
Adding an additional transform method which takes no XML input document

Added:
    turbine/fulcrum/trunk/xslt/src/test/xslt/hello.xslt   (contents, props changed)
      - copied, changed from r825670, turbine/fulcrum/trunk/xslt/src/test/xslt/identity.xslt
Modified:
    turbine/fulcrum/trunk/xslt/src/java/org/apache/fulcrum/xslt/DefaultXSLTService.java
    turbine/fulcrum/trunk/xslt/src/java/org/apache/fulcrum/xslt/XSLTService.java
    turbine/fulcrum/trunk/xslt/src/java/org/apache/fulcrum/xslt/XSLTServiceFacade.java
    turbine/fulcrum/trunk/xslt/src/test/org/apache/fulcrum/xslt/XSLTServiceTest.java

Modified: turbine/fulcrum/trunk/xslt/src/java/org/apache/fulcrum/xslt/DefaultXSLTService.java
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/xslt/src/java/org/apache/fulcrum/xslt/DefaultXSLTService.java?rev=833099&amp;r1=833098&amp;r2=833099&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/xslt/src/java/org/apache/fulcrum/xslt/DefaultXSLTService.java (original)
+++ turbine/fulcrum/trunk/xslt/src/java/org/apache/fulcrum/xslt/DefaultXSLTService.java Thu
Nov  5 17:46:25 2009
@@ -36,6 +36,8 @@
 import javax.xml.transform.dom.DOMSource;
 import javax.xml.transform.stream.StreamResult;
 import javax.xml.transform.stream.StreamSource;
+import javax.xml.parsers.DocumentBuilder;
+import javax.xml.parsers.DocumentBuilderFactory;
 
 import org.apache.avalon.framework.activity.Initializable;
 import org.apache.avalon.framework.configuration.Configurable;
@@ -48,6 +50,7 @@
 import org.apache.avalon.framework.service.ServiceManager;
 import org.apache.avalon.framework.service.Serviceable;
 import org.w3c.dom.Node;
+import org.w3c.dom.Document;
 
 /**
  * Implementation of the Turbine XSLT Service. It transforms xml with a given
@@ -103,7 +106,7 @@
      */
     private URL getStyleURL(String style)
     {
-        StringBuffer sb = new StringBuffer(128);
+        StringBuffer sb = new StringBuffer();
 
         sb.append(path);
 
@@ -137,12 +140,15 @@
 
     /**
      * Compile Templates from an input file.
+     *
+     * @param source the source URL
+     * @return the compiled template
+     * @throws Exception the compilation failed
      */
     protected Templates compileTemplates(URL source) throws Exception
     {
         StreamSource xslin = new StreamSource(source.openStream());
-        Templates root = tfactory.newTemplates(xslin);
-        return root;
+        return tfactory.newTemplates(xslin);
     }
 
     /**
@@ -154,6 +160,10 @@
      * This method is synchronized on the xsl cache so that a thread does not
      * attempt to load Templates from the cache while it is still being
      * compiled.
+     *
+     * @param xslName the name of the XSL file
+     * @return the correspondint template or null if the XSL was not found
+     * @throws Exception getting the template failed
      */
     protected Templates getTemplates(String xslName) throws Exception
     {
@@ -177,24 +187,38 @@
 
             return sr;
         }
-
     }
 
     protected void transform(String xslName, Source xmlin, Result xmlout, Map params)
             throws Exception
     {
-        Transformer transformer = getTransformer(xslName);
-
-        if (params != null)
+        try
         {
-            for (Iterator it = params.entrySet().iterator(); it.hasNext(); )
+            long startTime = System.currentTimeMillis();
+            Transformer transformer = getTransformer(xslName);
+
+            if (params != null)
             {
-                Map.Entry entry = (Map.Entry) it.next();
-                transformer.setParameter(String.valueOf(entry.getKey()), entry.getValue());
+                for (Iterator it = params.entrySet().iterator(); it.hasNext(); )
+                {
+                    Map.Entry entry = (Map.Entry) it.next();
+                    transformer.setParameter(String.valueOf(entry.getKey()), entry.getValue());
+                }
             }
-        }
 
-        transformer.transform(xmlin, xmlout);
+            transformer.transform(xmlin, xmlout);
+
+            if(getLogger().isDebugEnabled())
+            {
+                long duration = System.currentTimeMillis() - startTime;
+                getLogger().debug("The transforamtion '" + xslName + "' took " + duration
+ " ms");
+            }
+        }
+        catch(Exception e)
+        {
+            getLogger().debug("The transformation '" + xslName + "' failed due to : " + e.getMessage());
+            throw e;
+        }
     }
 
     /**
@@ -349,6 +373,38 @@
     }
 
     /**
+     * Uses an xsl file without any input.
+     *
+     * @param xslName The name of the file that contains the xsl stylesheet.
+     * @param params A set of parameters that will be forwarded to the XSLT
+     * @return the transformed output
+     * @throws Exception the transformation failed
+     */
+    public String transform(String xslName, Map params) throws Exception {
+
+        StringWriter sw = new StringWriter();
+        transform(xslName, sw, params);
+        return sw.toString();
+    }
+
+    /**
+     * Uses an xsl file without any xml input (simplified stylesheet)
+     *
+     * @param xslName The name of the file that contains the xsl stylesheet
+     * @param out The writer for the transformed output.
+     * @param params A set of parameters that will be forwarded to the XSLT
+     * @throws Exception the transformation failed
+     */
+    public void transform(String xslName, Writer out, Map params) throws Exception {
+
+        DocumentBuilderFactory documentBuilderFactory = DocumentBuilderFactory.newInstance();
+        DocumentBuilder documentBuilder = documentBuilderFactory.newDocumentBuilder();
+        Document document = documentBuilder.newDocument();
+
+        transform(xslName, document.getDocumentElement(), out, params);
+    }
+
+    /**
      * Retrieve a transformer for the given stylesheet name. If no stylesheet is
      * available for the provided name, an identity transformer will be
      * returned. This allows clients of this service to perform more complex
@@ -358,6 +414,7 @@
      * @param xslName
      *            Identifies stylesheet to get transformer for
      * @return A transformer for that stylesheet
+     * @throws Exception retrieving the transformer failed
      */
     public Transformer getTransformer(String xslName) throws Exception
     {

Modified: turbine/fulcrum/trunk/xslt/src/java/org/apache/fulcrum/xslt/XSLTService.java
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/xslt/src/java/org/apache/fulcrum/xslt/XSLTService.java?rev=833099&amp;r1=833098&amp;r2=833099&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/xslt/src/java/org/apache/fulcrum/xslt/XSLTService.java (original)
+++ turbine/fulcrum/trunk/xslt/src/java/org/apache/fulcrum/xslt/XSLTService.java Thu Nov 
5 17:46:25 2009
@@ -129,4 +129,26 @@
      * @throws Exception the transformation failed
      */
     String transform(String xslName, Node in, Map params) throws Exception;
+
+    /**
+     * Uses an xsl file without any xml input.
+     *
+     * @param xslName The name of the file that contains the xsl stylesheet.
+     * @param params A set of parameters that will be forwarded to the XSLT
+     * @return the transformed output
+     * @throws Exception the transformation failed
+     */
+    String transform(String xslName, Map params) throws Exception;
+
+    /**
+     * Uses an xsl file without any xml input.
+     *
+     * @param xslName The name of the file that contains the xsl stylesheet
+     * @param out The writer for the transformed output.
+     * @param params A set of parameters that will be forwarded to the XSLT
+     * @return the transformed output
+     * @throws Exception the transformation failed
+     */
+    void transform(String xslName, Writer out, Map params) throws Exception;
+
 }

Modified: turbine/fulcrum/trunk/xslt/src/java/org/apache/fulcrum/xslt/XSLTServiceFacade.java
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/xslt/src/java/org/apache/fulcrum/xslt/XSLTServiceFacade.java?rev=833099&amp;r1=833098&amp;r2=833099&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/xslt/src/java/org/apache/fulcrum/xslt/XSLTServiceFacade.java (original)
+++ turbine/fulcrum/trunk/xslt/src/java/org/apache/fulcrum/xslt/XSLTServiceFacade.java Thu
Nov  5 17:46:25 2009
@@ -174,4 +174,28 @@
     {
         return getService().transform(xslName, in, params);
     }
+
+    /**
+     * Uses an xsl file without any xml input.
+     *
+     * @param xslName The name of the file that contains the xsl stylesheet.
+     * @param params A set of parameters that will be forwarded to the XSLT
+     * @return the transformed output
+     * @throws Exception the transformation failed
+     */
+    public String transform(String xslName, Map params) throws Exception {
+        return getService().transform(xslName, params);
+    }
+
+    /**
+     * Uses an xsl file without any xml input.
+     *
+     * @param xslName The name of the file that contains the xsl stylesheet
+     * @param out The writer for the transformed output.
+     * @param params A set of parameters that will be forwarded to the XSLT
+     * @throws Exception the transformation failed
+     */    
+    public void transform(String xslName, Writer out, Map params) throws Exception {
+        getService().transform(xslName, out, params);
+    }
 }

Modified: turbine/fulcrum/trunk/xslt/src/test/org/apache/fulcrum/xslt/XSLTServiceTest.java
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/xslt/src/test/org/apache/fulcrum/xslt/XSLTServiceTest.java?rev=833099&amp;r1=833098&amp;r2=833099&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/xslt/src/test/org/apache/fulcrum/xslt/XSLTServiceTest.java (original)
+++ turbine/fulcrum/trunk/xslt/src/test/org/apache/fulcrum/xslt/XSLTServiceTest.java Thu Nov
 5 17:46:25 2009
@@ -27,6 +27,8 @@
 import java.io.FileReader;
 import java.io.Writer;
 import java.io.FileWriter;
+import java.util.HashMap;
+import java.util.Map;
 
 /**
  * XSLTServiceTest
@@ -72,7 +74,7 @@
     }
 
     /**
-     * Test an indentity transformation to make sure that the service
+     * Test an identity transformation to make sure that the service
      * works.
      *
      * @throws Exception the test failed
@@ -81,8 +83,21 @@
     {
         Reader reader = new FileReader("./pom.xml");
         Writer writer = new FileWriter("./target/testTransform.xml");
-        xsltService.transform("identity.xsl", reader, writer);
+        xsltService.transform("identity.xslt", reader, writer);
         reader.close();
         writer.close();
     }
+
+     /**
+     * Test invocation of a XSLT having no source document.
+     *
+     * @throws Exception the test failed
+     */
+    public void testTransformXsltOnly() throws Exception
+    {
+        Map values = new HashMap();
+        values.put("name", "Fulcrum");
+        String result = xsltService.transform("hello.xslt", values );
+        assertTrue(result.contains("Hello Fulcrum"));
+    }
 }

Copied: turbine/fulcrum/trunk/xslt/src/test/xslt/hello.xslt (from r825670, turbine/fulcrum/trunk/xslt/src/test/xslt/identity.xslt)
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/xslt/src/test/xslt/hello.xslt?p2=turbine/fulcrum/trunk/xslt/src/test/xslt/hello.xslt&amp;p1=turbine/fulcrum/trunk/xslt/src/test/xslt/identity.xslt&amp;r1=825670&amp;r2=833099&amp;rev=833099&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/xslt/src/test/xslt/identity.xslt (original)
+++ turbine/fulcrum/trunk/xslt/src/test/xslt/hello.xslt Thu Nov  5 17:46:25 2009
@@ -1,10 +1,8 @@
 &lt;?xml version="1.0" encoding="UTF-8"?&gt;
-&lt;xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"&gt;
-    
-    &lt;xsl:template match="@*|node()"&gt;
-       &lt;xsl:copy&gt;
-          &lt;xsl:apply-templates select="@*|node()"/&gt;
-       &lt;/xsl:copy&gt;
-    &lt;/xsl:template&gt;
-    
-&lt;/xsl:stylesheet&gt;
+
+&lt;html xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xsl:version="1.0"&gt;
+    &lt;xsl:param name="name"/&gt;
+    &lt;body&gt;
+        &lt;h1&gt;Hello &lt;xsl:value-of select="$name"/&gt;&lt;/h1&gt;
+    &lt;/body&gt;
+&lt;/html&gt;

Propchange: turbine/fulcrum/trunk/xslt/src/test/xslt/hello.xslt
------------------------------------------------------------------------------
    svn:mergeinfo = 




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r832070 - /turbine/fulcrum/trunk/intake/pom.xml</title>
<author><name>tv@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200911.mbox/%3c20091102193308.8A34F23888E5@eris.apache.org%3e"/>
<id>urn:uuid:%3c20091102193308-8A34F23888E5@eris-apache-org%3e</id>
<updated>2009-11-02T19:33:08Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: tv
Date: Mon Nov  2 19:33:08 2009
New Revision: 832070

URL: http://svn.apache.org/viewvc?rev=832070&amp;view=rev
Log:
Fix POMs

Modified:
    turbine/fulcrum/trunk/intake/pom.xml

Modified: turbine/fulcrum/trunk/intake/pom.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/intake/pom.xml?rev=832070&amp;r1=832069&amp;r2=832070&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/intake/pom.xml (original)
+++ turbine/fulcrum/trunk/intake/pom.xml Mon Nov  2 19:33:08 2009
@@ -1,3 +1,20 @@
+&lt;?xml version="1.0" encoding="UTF-8"?&gt;
+&lt;!--
+   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.
+--&gt;
 &lt;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"&gt;
   &lt;parent&gt;
     &lt;groupId&gt;org.apache.fulcrum&lt;/groupId&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r832060 - /turbine/fulcrum/tags/FULCRUM_INTAKE_1_0_6/pom.xml</title>
<author><name>tv@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200911.mbox/%3c20091102190605.5185823888DA@eris.apache.org%3e"/>
<id>urn:uuid:%3c20091102190605-5185823888DA@eris-apache-org%3e</id>
<updated>2009-11-02T19:06:05Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: tv
Date: Mon Nov  2 19:06:04 2009
New Revision: 832060

URL: http://svn.apache.org/viewvc?rev=832060&amp;view=rev
Log:
Fix POMs

Modified:
    turbine/fulcrum/tags/FULCRUM_INTAKE_1_0_6/pom.xml

Modified: turbine/fulcrum/tags/FULCRUM_INTAKE_1_0_6/pom.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/tags/FULCRUM_INTAKE_1_0_6/pom.xml?rev=832060&amp;r1=832059&amp;r2=832060&amp;view=diff
==============================================================================
--- turbine/fulcrum/tags/FULCRUM_INTAKE_1_0_6/pom.xml (original)
+++ turbine/fulcrum/tags/FULCRUM_INTAKE_1_0_6/pom.xml Mon Nov  2 19:06:04 2009
@@ -1,3 +1,20 @@
+&lt;?xml version="1.0" encoding="UTF-8"?&gt;
+&lt;!--
+   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.
+--&gt;
 &lt;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"&gt;
   &lt;parent&gt;
     &lt;groupId&gt;org.apache.fulcrum&lt;/groupId&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r832056 - /turbine/fulcrum/trunk/intake/pom.xml</title>
<author><name>tv@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200911.mbox/%3c20091102190212.7098C23888DA@eris.apache.org%3e"/>
<id>urn:uuid:%3c20091102190212-7098C23888DA@eris-apache-org%3e</id>
<updated>2009-11-02T19:02:12Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: tv
Date: Mon Nov  2 19:02:12 2009
New Revision: 832056

URL: http://svn.apache.org/viewvc?rev=832056&amp;view=rev
Log:
[maven-release-plugin] prepare for next development iteration

Modified:
    turbine/fulcrum/trunk/intake/pom.xml

Modified: turbine/fulcrum/trunk/intake/pom.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/intake/pom.xml?rev=832056&amp;r1=832055&amp;r2=832056&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/intake/pom.xml (original)
+++ turbine/fulcrum/trunk/intake/pom.xml Mon Nov  2 19:02:12 2009
@@ -7,16 +7,16 @@
 
   &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
   &lt;artifactId&gt;fulcrum-intake&lt;/artifactId&gt;
-  &lt;version&gt;1.0.6&lt;/version&gt;
+  &lt;version&gt;1.0.7-SNAPSHOT&lt;/version&gt;
   &lt;name&gt;Fulcrum Intake&lt;/name&gt;
   &lt;inceptionYear&gt;2005&lt;/inceptionYear&gt;
   &lt;description&gt;Fulcrum Intake Service&lt;/description&gt;
   &lt;url&gt;http://turbine.apache.org/fulcrum/fulcrum-intake&lt;/url&gt;
 		
   &lt;scm&gt;
-    &lt;connection&gt;scm:svn:http://svn.apache.org/repos/asf/turbine/fulcrum/tags/FULCRUM_INTAKE_1_0_6&lt;/connection&gt;
-    &lt;developerConnection&gt;scm:svn:https://svn.apache.org/repos/asf/turbine/fulcrum/tags/FULCRUM_INTAKE_1_0_6&lt;/developerConnection&gt;
-    &lt;url&gt;http://svn.apache.org/viewcvs/turbine/fulcrum/tags/FULCRUM_INTAKE_1_0_6&lt;/url&gt;
+    &lt;connection&gt;scm:svn:http://svn.apache.org/repos/asf/turbine/fulcrum/trunk/intake/&lt;/connection&gt;
+    &lt;developerConnection&gt;scm:svn:https://svn.apache.org/repos/asf/turbine/fulcrum/trunk/intake/&lt;/developerConnection&gt;
+    &lt;url&gt;http://svn.apache.org/viewcvs/turbine/fulcrum/trunk/intake/&lt;/url&gt;
   &lt;/scm&gt;
 
   &lt;distributionManagement&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r832055 - in /turbine/fulcrum/tags/FULCRUM_INTAKE_1_0_6: ./ pom.xml</title>
<author><name>tv@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200911.mbox/%3c20091102190155.DE2282388998@eris.apache.org%3e"/>
<id>urn:uuid:%3c20091102190155-DE2282388998@eris-apache-org%3e</id>
<updated>2009-11-02T19:01:55Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: tv
Date: Mon Nov  2 19:01:55 2009
New Revision: 832055

URL: http://svn.apache.org/viewvc?rev=832055&amp;view=rev
Log:
[maven-release-plugin]  copy for tag FULCRUM_INTAKE_1_0_6

Added:
    turbine/fulcrum/tags/FULCRUM_INTAKE_1_0_6/
      - copied from r832052, turbine/fulcrum/trunk/intake/
    turbine/fulcrum/tags/FULCRUM_INTAKE_1_0_6/pom.xml
      - copied unchanged from r832054, turbine/fulcrum/trunk/intake/pom.xml



</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r832054 - /turbine/fulcrum/trunk/intake/pom.xml</title>
<author><name>tv@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200911.mbox/%3c20091102190139.4793E23888FE@eris.apache.org%3e"/>
<id>urn:uuid:%3c20091102190139-4793E23888FE@eris-apache-org%3e</id>
<updated>2009-11-02T19:01:39Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: tv
Date: Mon Nov  2 19:01:38 2009
New Revision: 832054

URL: http://svn.apache.org/viewvc?rev=832054&amp;view=rev
Log:
[maven-release-plugin] prepare release FULCRUM_INTAKE_1_0_6

Modified:
    turbine/fulcrum/trunk/intake/pom.xml

Modified: turbine/fulcrum/trunk/intake/pom.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/intake/pom.xml?rev=832054&amp;r1=832053&amp;r2=832054&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/intake/pom.xml (original)
+++ turbine/fulcrum/trunk/intake/pom.xml Mon Nov  2 19:01:38 2009
@@ -1,24 +1,4 @@
-&lt;?xml version="1.0"?&gt;
-&lt;!--
-   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.
---&gt;
-&lt;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"&gt;
+&lt;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"&gt;
   &lt;parent&gt;
     &lt;groupId&gt;org.apache.fulcrum&lt;/groupId&gt;
     &lt;artifactId&gt;fulcrum-parent&lt;/artifactId&gt;
@@ -27,16 +7,16 @@
 
   &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
   &lt;artifactId&gt;fulcrum-intake&lt;/artifactId&gt;
-  &lt;version&gt;1.0.6-SNAPSHOT&lt;/version&gt;
+  &lt;version&gt;1.0.6&lt;/version&gt;
   &lt;name&gt;Fulcrum Intake&lt;/name&gt;
   &lt;inceptionYear&gt;2005&lt;/inceptionYear&gt;
   &lt;description&gt;Fulcrum Intake Service&lt;/description&gt;
   &lt;url&gt;http://turbine.apache.org/fulcrum/fulcrum-intake&lt;/url&gt;
 		
   &lt;scm&gt;
-    &lt;connection&gt;scm:svn:http://svn.apache.org/repos/asf/turbine/fulcrum/trunk/intake/&lt;/connection&gt;
-    &lt;developerConnection&gt;scm:svn:https://svn.apache.org/repos/asf/turbine/fulcrum/trunk/intake/&lt;/developerConnection&gt;
-    &lt;url&gt;http://svn.apache.org/viewcvs/turbine/fulcrum/trunk/intake/&lt;/url&gt;
+    &lt;connection&gt;scm:svn:http://svn.apache.org/repos/asf/turbine/fulcrum/tags/FULCRUM_INTAKE_1_0_6&lt;/connection&gt;
+    &lt;developerConnection&gt;scm:svn:https://svn.apache.org/repos/asf/turbine/fulcrum/tags/FULCRUM_INTAKE_1_0_6&lt;/developerConnection&gt;
+    &lt;url&gt;http://svn.apache.org/viewcvs/turbine/fulcrum/tags/FULCRUM_INTAKE_1_0_6&lt;/url&gt;
   &lt;/scm&gt;
 
   &lt;distributionManagement&gt;
@@ -66,7 +46,7 @@
       &lt;name&gt;Siegfried Goeschl&lt;/name&gt;
       &lt;id&gt;sgoeschl&lt;/id&gt;
       &lt;email&gt;sgoeschl@apache.org&lt;/email&gt;
-      &lt;organization&gt;&lt;/organization&gt;
+      &lt;organization /&gt;
       &lt;roles&gt;
         &lt;role&gt;Java Developer&lt;/role&gt;
       &lt;/roles&gt;
@@ -75,7 +55,7 @@
       &lt;name&gt;Thomas Vandahl&lt;/name&gt;
       &lt;id&gt;tv&lt;/id&gt;
       &lt;email&gt;tv@apache.org&lt;/email&gt;
-      &lt;organization&gt;&lt;/organization&gt;
+      &lt;organization /&gt;
       &lt;roles&gt;
         &lt;role&gt;Java Developer&lt;/role&gt;
       &lt;/roles&gt;
@@ -178,4 +158,4 @@
     &lt;fulcrum.deployment.protocol&gt;scpexe&lt;/fulcrum.deployment.protocol&gt;
   &lt;/properties&gt;  
 	
-&lt;/project&gt;
+&lt;/project&gt;
\ No newline at end of file




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r832052 - in /turbine/fulcrum/trunk/intake: ./ NOTICE.txt maven.xml pom.xml project.properties project.xml src/site/ src/site/site.xml xdocs/changes.xml xdocs/index.xml xdocs/navigation.xml</title>
<author><name>tv@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200911.mbox/%3c20091102185856.72BE12388898@eris.apache.org%3e"/>
<id>urn:uuid:%3c20091102185856-72BE12388898@eris-apache-org%3e</id>
<updated>2009-11-02T18:58:56Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: tv
Date: Mon Nov  2 18:58:55 2009
New Revision: 832052

URL: http://svn.apache.org/viewvc?rev=832052&amp;view=rev
Log:
- Fixed dependencies
- Updated documentation
- Removed Maven-1-stuff
- Added NOTICE
- Prepare release

Added:
    turbine/fulcrum/trunk/intake/NOTICE.txt   (with props)
    turbine/fulcrum/trunk/intake/src/site/
    turbine/fulcrum/trunk/intake/src/site/site.xml   (with props)
Removed:
    turbine/fulcrum/trunk/intake/maven.xml
    turbine/fulcrum/trunk/intake/project.properties
    turbine/fulcrum/trunk/intake/project.xml
    turbine/fulcrum/trunk/intake/xdocs/navigation.xml
Modified:
    turbine/fulcrum/trunk/intake/   (props changed)
    turbine/fulcrum/trunk/intake/pom.xml
    turbine/fulcrum/trunk/intake/xdocs/changes.xml
    turbine/fulcrum/trunk/intake/xdocs/index.xml

Propchange: turbine/fulcrum/trunk/intake/
------------------------------------------------------------------------------
    (empty)

Added: turbine/fulcrum/trunk/intake/NOTICE.txt
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/intake/NOTICE.txt?rev=832052&amp;view=auto
==============================================================================
--- turbine/fulcrum/trunk/intake/NOTICE.txt (added)
+++ turbine/fulcrum/trunk/intake/NOTICE.txt Mon Nov  2 18:58:55 2009
@@ -0,0 +1,5 @@
+Turbine Fulcrum Intake Component
+Copyright 2002-2009 The Apache Software Foundation.
+
+This product includes software developed at
+The Apache Software Foundation (http://www.apache.org/).

Propchange: turbine/fulcrum/trunk/intake/NOTICE.txt
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: turbine/fulcrum/trunk/intake/pom.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/intake/pom.xml?rev=832052&amp;r1=832051&amp;r2=832052&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/intake/pom.xml (original)
+++ turbine/fulcrum/trunk/intake/pom.xml Mon Nov  2 18:58:55 2009
@@ -91,16 +91,6 @@
 
     &lt;dependency&gt;
       &lt;groupId&gt;org.apache.fulcrum&lt;/groupId&gt;
-      &lt;artifactId&gt;fulcrum-factory&lt;/artifactId&gt;
-      &lt;version&gt;1.0.4&lt;/version&gt;
-    &lt;/dependency&gt;
-     &lt;dependency&gt;
-      &lt;groupId&gt;org.apache.fulcrum&lt;/groupId&gt;
-      &lt;artifactId&gt;fulcrum-pool&lt;/artifactId&gt;
-      &lt;version&gt;1.0.4&lt;/version&gt;
-    &lt;/dependency&gt;
-    &lt;dependency&gt;
-      &lt;groupId&gt;org.apache.fulcrum&lt;/groupId&gt;
       &lt;artifactId&gt;fulcrum-parser&lt;/artifactId&gt;
       &lt;version&gt;1.0.2&lt;/version&gt;
     &lt;/dependency&gt;
@@ -108,6 +98,7 @@
       &lt;groupId&gt;org.apache.fulcrum&lt;/groupId&gt;
       &lt;artifactId&gt;fulcrum-upload&lt;/artifactId&gt;
       &lt;version&gt;1.0.4&lt;/version&gt;
+      &lt;optional&gt;true&lt;/optional&gt;
     &lt;/dependency&gt;
 
     &lt;dependency&gt;
@@ -165,5 +156,26 @@
       &lt;/resource&gt;
     &lt;/resources&gt;
   &lt;/build&gt;
+
+  &lt;profiles&gt;
+    &lt;profile&gt;
+      &lt;id&gt;rc&lt;/id&gt;
+      &lt;distributionManagement&gt;
+        &lt;!-- Cannot define in parent ATM, see COMMONSSITE-26 --&gt;
+        &lt;site&gt;
+          &lt;id&gt;apache.website&lt;/id&gt;
+          &lt;name&gt;Apache Fulcrum Release Candidate Staging Site&lt;/name&gt;
+          &lt;url&gt;${fulcrum.deployment.protocol}://people.apache.org/www/turbine.apache.org/builds/fulcrum/${fulcrum.componentid}/${fulcrum.release.version}/${fulcrum.rc.version}/site&lt;/url&gt;
+        &lt;/site&gt;
+      &lt;/distributionManagement&gt;
+    &lt;/profile&gt;
+  &lt;/profiles&gt;
+  
+  &lt;properties&gt;
+    &lt;!-- This bits are used for the staging directory --&gt;
+    &lt;fulcrum.release.version&gt;1.0.6&lt;/fulcrum.release.version&gt;
+    &lt;fulcrum.rc.version&gt;RC1&lt;/fulcrum.rc.version&gt;  
+    &lt;fulcrum.deployment.protocol&gt;scpexe&lt;/fulcrum.deployment.protocol&gt;
+  &lt;/properties&gt;  
 	
 &lt;/project&gt;

Added: turbine/fulcrum/trunk/intake/src/site/site.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/intake/src/site/site.xml?rev=832052&amp;view=auto
==============================================================================
--- turbine/fulcrum/trunk/intake/src/site/site.xml (added)
+++ turbine/fulcrum/trunk/intake/src/site/site.xml Mon Nov  2 18:58:55 2009
@@ -0,0 +1,30 @@
+&lt;?xml version="1.0" encoding="ISO-8859-1"?&gt;
+&lt;!--
+ 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.
+--&gt;
+&lt;project
+  name="Fulcrum Intake"
+  href="http://turbine.apache.org/fulcrum/fulcrum-intake/"&gt;
+
+  &lt;body&gt;
+    &lt;menu name="Overview"&gt;
+      &lt;item name="Main"                 href="/index.html"/&gt;
+      &lt;item name="Howto"                href="/howto.html"/&gt;
+    &lt;/menu&gt;
+  &lt;/body&gt;
+&lt;/project&gt;

Propchange: turbine/fulcrum/trunk/intake/src/site/site.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: turbine/fulcrum/trunk/intake/xdocs/changes.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/intake/xdocs/changes.xml?rev=832052&amp;r1=832051&amp;r2=832052&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/intake/xdocs/changes.xml (original)
+++ turbine/fulcrum/trunk/intake/xdocs/changes.xml Mon Nov  2 18:58:55 2009
@@ -25,7 +25,12 @@
   &lt;/properties&gt;
 
   &lt;body&gt;
-  	 &lt;release version="1.0.4-dev" date="in Subversion"&gt;
+     &lt;release version="1.0.7-SNAPSHOT" date="in Subversion"&gt;
+     &lt;/release&gt;
+  	 &lt;release version="1.0.6" date="2009-11-02"&gt;
+      &lt;action type="fix" dev="tv"&gt;
+        Catch only Exceptions that are actually thrown.
+      &lt;/action&gt;
       &lt;action type="fix" dev="tv" issue="TRB-11" due-to="Evan Koffler"&gt;
         Intake won't use interfaces for the mapTo() method.
       &lt;/action&gt;

Modified: turbine/fulcrum/trunk/intake/xdocs/index.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/intake/xdocs/index.xml?rev=832052&amp;r1=832051&amp;r2=832052&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/intake/xdocs/index.xml (original)
+++ turbine/fulcrum/trunk/intake/xdocs/index.xml Mon Nov  2 18:58:55 2009
@@ -32,6 +32,26 @@
       This service provides access to input processing objects based on an XML 
       specification.
     &lt;/p&gt;
+
+    &lt;p&gt;
+      It is written
+      for use in Turbine but it can be used in any container compatible
+      with Avalon's ECM container.
+    &lt;/p&gt;
+    
+    &lt;p&gt;
+      The component uses the following services from the Fulcrum Repository
+      &lt;ul&gt;
+        &lt;li&gt;
+          &lt;a href="http://turbine.apache.org/fulcrum/fulcrum-parser/"&gt;Fulcrum Parser
Service&lt;/a&gt;
+        &lt;/li&gt;
+        &lt;li&gt;
+          &lt;a href="http://turbine.apache.org/fulcrum/fulcrum-upload/"&gt;Fulcrum Upload
Service&lt;/a&gt;
+          (optional)
+        &lt;/li&gt;
+      &lt;/ul&gt;
+    &lt;/p&gt;
+
   &lt;/section&gt;
 
   &lt;section name="Configuration"&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r832048 - in /turbine/fulcrum/trunk/intake/src/java/org/apache/fulcrum/intake: IntakeServiceFacade.java IntakeServiceImpl.java model/Group.java validator/FieldReference.java validator/StringValidator.java</title>
<author><name>tv@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200911.mbox/%3c20091102185509.7C8EB23888CF@eris.apache.org%3e"/>
<id>urn:uuid:%3c20091102185509-7C8EB23888CF@eris-apache-org%3e</id>
<updated>2009-11-02T18:55:09Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: tv
Date: Mon Nov  2 18:55:08 2009
New Revision: 832048

URL: http://svn.apache.org/viewvc?rev=832048&amp;view=rev
Log:
- Fix some PMD and Javadoc complaints
- Catch only exceptions that are actually thrown

Modified:
    turbine/fulcrum/trunk/intake/src/java/org/apache/fulcrum/intake/IntakeServiceFacade.java
    turbine/fulcrum/trunk/intake/src/java/org/apache/fulcrum/intake/IntakeServiceImpl.java
    turbine/fulcrum/trunk/intake/src/java/org/apache/fulcrum/intake/model/Group.java
    turbine/fulcrum/trunk/intake/src/java/org/apache/fulcrum/intake/validator/FieldReference.java
    turbine/fulcrum/trunk/intake/src/java/org/apache/fulcrum/intake/validator/StringValidator.java

Modified: turbine/fulcrum/trunk/intake/src/java/org/apache/fulcrum/intake/IntakeServiceFacade.java
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/intake/src/java/org/apache/fulcrum/intake/IntakeServiceFacade.java?rev=832048&amp;r1=832047&amp;r2=832048&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/intake/src/java/org/apache/fulcrum/intake/IntakeServiceFacade.java
(original)
+++ turbine/fulcrum/trunk/intake/src/java/org/apache/fulcrum/intake/IntakeServiceFacade.java
Mon Nov  2 18:55:08 2009
@@ -46,7 +46,7 @@
 
     /**
      * Return whether the intake service has been initialized.
-     * @return
+     * @return true if the service has been initialzed
      */
     public static boolean isInitialized()
     {

Modified: turbine/fulcrum/trunk/intake/src/java/org/apache/fulcrum/intake/IntakeServiceImpl.java
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/intake/src/java/org/apache/fulcrum/intake/IntakeServiceImpl.java?rev=832048&amp;r1=832047&amp;r2=832048&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/intake/src/java/org/apache/fulcrum/intake/IntakeServiceImpl.java
(original)
+++ turbine/fulcrum/trunk/intake/src/java/org/apache/fulcrum/intake/IntakeServiceImpl.java
Mon Nov  2 18:55:08 2009
@@ -503,17 +503,10 @@
 
                 if (gettersForClassName != null)
                 {
-                    try
+                    Method getter = pd.getReadMethod();
+                    if (getter != null)
                     {
-                        Method getter = pd.getReadMethod();
-                        if (getter != null)
-                        {
-                            gettersForClassName.put(propName, getter);
-                        }
-                    }
-                    catch (Exception e)
-                    {
-                        // Do nothing
+                        gettersForClassName.put(propName, getter);
                     }
                 }
             }
@@ -568,17 +561,10 @@
 
                 if (settersForClassName != null)
                 {
-                    try
-                    {
-                        Method setter = pd.getWriteMethod();
-                        if (setter != null)
-                        {
-                            settersForClassName.put(propName, setter);
-                        }
-                    }
-                    catch (Exception e)
+                    Method setter = pd.getWriteMethod();
+                    if (setter != null)
                     {
-                        // Do nothing
+                        settersForClassName.put(propName, setter);
                     }
                 }
             }

Modified: turbine/fulcrum/trunk/intake/src/java/org/apache/fulcrum/intake/model/Group.java
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/intake/src/java/org/apache/fulcrum/intake/model/Group.java?rev=832048&amp;r1=832047&amp;r2=832048&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/intake/src/java/org/apache/fulcrum/intake/model/Group.java (original)
+++ turbine/fulcrum/trunk/intake/src/java/org/apache/fulcrum/intake/model/Group.java Mon Nov
 2 18:55:08 2009
@@ -426,7 +426,7 @@
                     {
                         flds[i].setProperty(obj);
                     }
-                    catch (Exception e)
+                    catch (IntakeException e)
                     {
                         // just move on to next field
                     }
@@ -447,7 +447,7 @@
                         {
                             interfaceFields[i].setProperty(obj);
                         }
-                        catch(Exception e)
+                        catch(IntakeException e)
                         {
                             // just move on to next field
                         }

Modified: turbine/fulcrum/trunk/intake/src/java/org/apache/fulcrum/intake/validator/FieldReference.java
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/intake/src/java/org/apache/fulcrum/intake/validator/FieldReference.java?rev=832048&amp;r1=832047&amp;r2=832048&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/intake/src/java/org/apache/fulcrum/intake/validator/FieldReference.java
(original)
+++ turbine/fulcrum/trunk/intake/src/java/org/apache/fulcrum/intake/validator/FieldReference.java
Mon Nov  2 18:55:08 2009
@@ -158,8 +158,8 @@
     /**
      * Map the comparison strings to their numeric counterparts
      * 
-     * @param key the 
-     * @return
+     * @param key the string representation of a comparison operator
+     * @return the numeric representation of the given comparison operator
      */
     public static int getCompareType(String key)
     {

Modified: turbine/fulcrum/trunk/intake/src/java/org/apache/fulcrum/intake/validator/StringValidator.java
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/intake/src/java/org/apache/fulcrum/intake/validator/StringValidator.java?rev=832048&amp;r1=832047&amp;r2=832048&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/intake/src/java/org/apache/fulcrum/intake/validator/StringValidator.java
(original)
+++ turbine/fulcrum/trunk/intake/src/java/org/apache/fulcrum/intake/validator/StringValidator.java
Mon Nov  2 18:55:08 2009
@@ -77,6 +77,7 @@
      */
     public StringValidator()
     {
+        // do nothing
     }
 
     /**
@@ -115,21 +116,18 @@
     {
         super.assertValidity(testValue);
 
-        if (required || StringUtils.isNotEmpty(testValue))
+        if ((required || StringUtils.isNotEmpty(testValue)) &amp;&amp; maskPattern != null)
         {
-            if (maskPattern != null)
-            {
-                /** JDK 1.4 matcher */
-                boolean patternMatch = maskPattern.matcher(testValue).matches();
+            /** JDK 1.4 matcher */
+            boolean patternMatch = maskPattern.matcher(testValue).matches();
 
-                log.debug("Trying to match " + testValue
-                        + " to pattern " + maskString);
+            log.debug("Trying to match " + testValue
+                    + " to pattern " + maskString);
 
-                if (!patternMatch)
-                {
-                    errorMessage = maskMessage;
-                    throw new ValidationException(maskMessage);
-                }
+            if (!patternMatch)
+            {
+                errorMessage = maskMessage;
+                throw new ValidationException(maskMessage);
             }
         }
     }




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r831983 - /turbine/core/trunk/pom.xml</title>
<author><name>tv@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200911.mbox/%3c20091102174433.3944D23888D8@eris.apache.org%3e"/>
<id>urn:uuid:%3c20091102174433-3944D23888D8@eris-apache-org%3e</id>
<updated>2009-11-02T17:44:33Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: tv
Date: Mon Nov  2 17:44:32 2009
New Revision: 831983

URL: http://svn.apache.org/viewvc?rev=831983&amp;view=rev
Log:
Use released version of fulcrum-mimetype

Modified:
    turbine/core/trunk/pom.xml

Modified: turbine/core/trunk/pom.xml
URL: http://svn.apache.org/viewvc/turbine/core/trunk/pom.xml?rev=831983&amp;r1=831982&amp;r2=831983&amp;view=diff
==============================================================================
--- turbine/core/trunk/pom.xml (original)
+++ turbine/core/trunk/pom.xml Mon Nov  2 17:44:32 2009
@@ -974,7 +974,7 @@
     &lt;dependency&gt;
       &lt;groupId&gt;org.apache.fulcrum&lt;/groupId&gt;
       &lt;artifactId&gt;fulcrum-mimetype&lt;/artifactId&gt;
-      &lt;version&gt;1.0.5-SNAPSHOT&lt;/version&gt;
+      &lt;version&gt;1.0.5&lt;/version&gt;
     &lt;/dependency&gt;
     &lt;dependency&gt;
       &lt;groupId&gt;org.apache.excalibur.component&lt;/groupId&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r826777 - /turbine/fulcrum/trunk/site/pom.xml</title>
<author><name>tv@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200910.mbox/%3c20091019192904.DAC9523888C2@eris.apache.org%3e"/>
<id>urn:uuid:%3c20091019192904-DAC9523888C2@eris-apache-org%3e</id>
<updated>2009-10-19T19:29:04Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: tv
Date: Mon Oct 19 19:29:04 2009
New Revision: 826777

URL: http://svn.apache.org/viewvc?rev=826777&amp;view=rev
Log:
Update site for deployment

Modified:
    turbine/fulcrum/trunk/site/pom.xml

Modified: turbine/fulcrum/trunk/site/pom.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/site/pom.xml?rev=826777&amp;r1=826776&amp;r2=826777&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/site/pom.xml (original)
+++ turbine/fulcrum/trunk/site/pom.xml Mon Oct 19 19:29:04 2009
@@ -272,7 +272,7 @@
       Make the deployment protocol pluggable. This allows to switch to
       other protocols like scpexe, which some users prefer over scp.
     --&gt;
-    &lt;fulcrum.deployment.protocol&gt;scp&lt;/fulcrum.deployment.protocol&gt;
+    &lt;fulcrum.deployment.protocol&gt;scpexe&lt;/fulcrum.deployment.protocol&gt;
   &lt;/properties&gt;
 
 &lt;/project&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r826776 - in /turbine/fulcrum/trunk/site/src: changes/changes.xml site/xdoc/sites/security.xml</title>
<author><name>tv@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200910.mbox/%3c20091019192700.17C5723888C2@eris.apache.org%3e"/>
<id>urn:uuid:%3c20091019192700-17C5723888C2@eris-apache-org%3e</id>
<updated>2009-10-19T19:26:59Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: tv
Date: Mon Oct 19 19:26:59 2009
New Revision: 826776

URL: http://svn.apache.org/viewvc?rev=826776&amp;view=rev
Log:
Update site

Modified:
    turbine/fulcrum/trunk/site/src/changes/changes.xml
    turbine/fulcrum/trunk/site/src/site/xdoc/sites/security.xml

Modified: turbine/fulcrum/trunk/site/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/site/src/changes/changes.xml?rev=826776&amp;r1=826775&amp;r2=826776&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/site/src/changes/changes.xml (original)
+++ turbine/fulcrum/trunk/site/src/changes/changes.xml Mon Oct 19 19:26:59 2009
@@ -26,6 +26,9 @@
 
   &lt;body&gt;
     &lt;release version="3.0.0" date="2005-05-13"&gt;
+     &lt;action dev="tv" type="update"&gt;
+       Moved parser component to the released components section.
+     &lt;/action&gt;
      &lt;action dev="sgoeschl" type="add"&gt;
        Added fulcrum:site to build a subprojects and the master
        project including Dashboard report

Modified: turbine/fulcrum/trunk/site/src/site/xdoc/sites/security.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/site/src/site/xdoc/sites/security.xml?rev=826776&amp;r1=826775&amp;r2=826776&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/site/src/site/xdoc/sites/security.xml (original)
+++ turbine/fulcrum/trunk/site/src/site/xdoc/sites/security.xml Mon Oct 19 19:26:59 2009
@@ -34,6 +34,7 @@
         &lt;li&gt;&lt;a href="../fulcrum-security-api/index.html"&gt;Security API&lt;/a&gt;&lt;/li&gt;
         &lt;li&gt;&lt;a href="../fulcrum-security-memory/index.html"&gt;Memory Impl&lt;/a&gt;&lt;/li&gt;
         &lt;li&gt;&lt;a href="../fulcrum-security-hibernate/index.html"&gt;Hibernate Impl&lt;/a&gt;&lt;/li&gt;
+        &lt;li&gt;&lt;a href="../fulcrum-security-torque/index.html"&gt;Torque Impl&lt;/a&gt;&lt;/li&gt;
         &lt;li&gt;&lt;a href="../fulcrum-security-nt/index.html"&gt;NT Impl&lt;/a&gt;&lt;/li&gt;
         &lt;li&gt;&lt;a href="../fulcrum-security-adapter-turbine/index.html"&gt;Adapter
Turbine&lt;/a&gt;&lt;/li&gt;
         &lt;li&gt;&lt;a href="../fulcrum-security-adapter-opensymphony/index.html"&gt;Adapter
OpenSymphony&lt;/a&gt;&lt;/li&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r826755 - /turbine/fulcrum/trunk/mimetype/pom.xml</title>
<author><name>tv@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200910.mbox/%3c20091019184032.7735A238889C@eris.apache.org%3e"/>
<id>urn:uuid:%3c20091019184032-7735A238889C@eris-apache-org%3e</id>
<updated>2009-10-19T18:40:32Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: tv
Date: Mon Oct 19 18:40:32 2009
New Revision: 826755

URL: http://svn.apache.org/viewvc?rev=826755&amp;view=rev
Log:
[maven-release-plugin] prepare for next development iteration

Modified:
    turbine/fulcrum/trunk/mimetype/pom.xml

Modified: turbine/fulcrum/trunk/mimetype/pom.xml
URL: http://svn.apache.org/viewvc/turbine/fulcrum/trunk/mimetype/pom.xml?rev=826755&amp;r1=826754&amp;r2=826755&amp;view=diff
==============================================================================
--- turbine/fulcrum/trunk/mimetype/pom.xml (original)
+++ turbine/fulcrum/trunk/mimetype/pom.xml Mon Oct 19 18:40:32 2009
@@ -24,16 +24,16 @@
 
   &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
   &lt;artifactId&gt;fulcrum-mimetype&lt;/artifactId&gt;
-  &lt;version&gt;1.0.5&lt;/version&gt;
+  &lt;version&gt;1.0.6-SNAPSHOT&lt;/version&gt;
   &lt;name&gt;Fulcrum Mimetype&lt;/name&gt;
   &lt;inceptionYear&gt;2004&lt;/inceptionYear&gt;
   &lt;description&gt;Fulcrum Mimetype Component&lt;/description&gt;
   &lt;url&gt;http://turbine.apache.org/fulcrum/fulcrum-mimetype/&lt;/url&gt;
 		
   &lt;scm&gt;
-    &lt;connection&gt;scm:svn:http://svn.apache.org/repos/asf/turbine/fulcrum/tags/FULCRUM_MIMETYPE_1_0_5&lt;/connection&gt;
-    &lt;developerConnection&gt;scm:svn:https://svn.apache.org/repos/asf/turbine/fulcrum/tags/FULCRUM_MIMETYPE_1_0_5&lt;/developerConnection&gt;
-    &lt;url&gt;http://svn.apache.org/viewcvs/turbine/fulcrum/tags/FULCRUM_MIMETYPE_1_0_5&lt;/url&gt;
+    &lt;connection&gt;scm:svn:http://svn.apache.org/repos/asf/turbine/fulcrum/trunk/mimetype/&lt;/connection&gt;
+    &lt;developerConnection&gt;scm:svn:https://svn.apache.org/repos/asf/turbine/fulcrum/trunk/mimetype/&lt;/developerConnection&gt;
+    &lt;url&gt;http://svn.apache.org/viewcvs/turbine/fulcrum/trunk/mimetype/&lt;/url&gt;
   &lt;/scm&gt;
 
   &lt;distributionManagement&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>svn commit: r826754 - in /turbine/fulcrum/tags/FULCRUM_MIMETYPE_1_0_5: ./ pom.xml</title>
<author><name>tv@apache.org</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/turbine-commits/200910.mbox/%3c20091019183949.5BE7623888FE@eris.apache.org%3e"/>
<id>urn:uuid:%3c20091019183949-5BE7623888FE@eris-apache-org%3e</id>
<updated>2009-10-19T18:39:49Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Author: tv
Date: Mon Oct 19 18:39:49 2009
New Revision: 826754

URL: http://svn.apache.org/viewvc?rev=826754&amp;view=rev
Log:
[maven-release-plugin]  copy for tag FULCRUM_MIMETYPE_1_0_5

Added:
    turbine/fulcrum/tags/FULCRUM_MIMETYPE_1_0_5/
      - copied from r826752, turbine/fulcrum/trunk/mimetype/
    turbine/fulcrum/tags/FULCRUM_MIMETYPE_1_0_5/pom.xml
      - copied unchanged from r826753, turbine/fulcrum/trunk/mimetype/pom.xml



</pre>
</div>
</content>
</entry>
</feed>
