You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by pi...@apache.org on 2004/11/08 04:41:13 UTC

svn commit: rev 56901 - in cocoon/whiteboard/kernel: . sources/webapp/WEB-INF

Author: pier
Date: Sun Nov  7 19:41:12 2004
New Revision: 56901

Modified:
   cocoon/whiteboard/kernel/build.xml
   cocoon/whiteboard/kernel/sources/webapp/WEB-INF/configuration.xml
Log:
Better directories naming

Modified: cocoon/whiteboard/kernel/build.xml
==============================================================================
--- cocoon/whiteboard/kernel/build.xml	(original)
+++ cocoon/whiteboard/kernel/build.xml	Sun Nov  7 19:41:12 2004
@@ -193,15 +193,17 @@
   <target name="kernel.components">
     <antcall target="kernel.component"><param name="name" value="contracts/datasource"/></antcall>
     <antcall target="kernel.component"><param name="name" value="contracts/jaxp"/></antcall>
+    <antcall target="kernel.component"><param name="name" value="contracts/repository"/></antcall>
     <antcall target="kernel.component"><param name="name" value="contracts/servlet"/></antcall>
     <antcall target="kernel.component"><param name="name" value="extensions/logging"/></antcall>
     <antcall target="kernel.component"><param name="name" value="extensions/jaxp"/></antcall>
     <antcall target="kernel.component"><param name="name" value="modules/ant"/></antcall>
     <antcall target="kernel.component"><param name="name" value="modules/commons-collections"/></antcall>
     <antcall target="kernel.component"><param name="name" value="modules/commons-pool"/></antcall>
-    <antcall target="kernel.component"><param name="name" value="blocks/commons-dbcp"/></antcall>
-    <antcall target="kernel.component"><param name="name" value="blocks/jasper"/></antcall>
-    <antcall target="kernel.component"><param name="name" value="blocks/saxon"/></antcall>
+    <antcall target="kernel.component"><param name="name" value="blocks/datasource-commons-dbcp"/></antcall>
+    <antcall target="kernel.component"><param name="name" value="blocks/jaxp-saxon"/></antcall>
+    <antcall target="kernel.component"><param name="name" value="blocks/servlet-jasper"/></antcall>
+    <antcall target="kernel.component"><param name="name" value="blocks/repository-file"/></antcall>
   </target>
 
   <!-- =========================================================================== +

Modified: cocoon/whiteboard/kernel/sources/webapp/WEB-INF/configuration.xml
==============================================================================
--- cocoon/whiteboard/kernel/sources/webapp/WEB-INF/configuration.xml	(original)
+++ cocoon/whiteboard/kernel/sources/webapp/WEB-INF/configuration.xml	Sun Nov  7 19:41:12 2004
@@ -9,8 +9,9 @@
 
   <!-- The contract descriptors available to this kernel -->
   <descriptor href="kernel/contracts/datasource/cocoon.xml"/>
-  <descriptor href="kernel/contracts/servlet/cocoon.xml"/>
   <descriptor href="kernel/contracts/jaxp/cocoon.xml"/>
+  <descriptor href="kernel/contracts/repository/cocoon.xml"/>
+  <descriptor href="kernel/contracts/servlet/cocoon.xml"/>
 
   <!-- The extension descriptors available to this kernel -->
   <descriptor href="kernel/extensions/logging/cocoon.xml"/>
@@ -21,9 +22,10 @@
   <descriptor href="kernel/modules/commons-pool/cocoon.xml"/>
 
   <!-- The block descriptors available to this kernel -->
-  <descriptor href="kernel/blocks/commons-dbcp/cocoon.xml"/>
-  <descriptor href="kernel/blocks/jasper/cocoon.xml"/>
-  <descriptor href="kernel/blocks/saxon/cocoon.xml"/>
+  <descriptor href="kernel/blocks/datasource-commons-dbcp/cocoon.xml"/>
+  <descriptor href="kernel/blocks/jaxp-saxon/cocoon.xml"/>
+  <descriptor href="kernel/blocks/repository-file/cocoon.xml"/>
+  <descriptor href="kernel/blocks/servlet-jasper/cocoon.xml"/>
 
   <!-- Logging plugin configuration -->
   <logging log4j="log4j.xml"/>
@@ -40,10 +42,14 @@
     <set property="password" value="****"/>
     <set property="maxActive" value="5"/>
   </instance>
-  
+
   <instance name="jasper"  block="http://cocoon.apache.org/kernel/blocks/jasper/4.1.30">
     <jaxp transformer="saxon"/>
     <set property="kernel" kernel="true"/>
+  </instance>
+
+  <instance name="repository"  block="http://cocoon.apache.org/kernel/blocks/repository/file/1.0.0">
+    <set property="rootPath" value="/tmp/repository"/>
   </instance>
 
 </configuration>