You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by re...@apache.org on 2007/09/24 18:09:47 UTC

svn commit: r578865 - in /cocoon/trunk/tools/archetypes/cocoon-22-archetype-block/src/main/resources/archetype-resources: rcl.properties src/main/resources/META-INF/cocoon/spring/servlet-service.xml

Author: reinhard
Date: Mon Sep 24 09:09:46 2007
New Revision: 578865

URL: http://svn.apache.org/viewvc?rev=578865&view=rev
Log:
the term "service" is more adequate for servlet-services than "block" (a block can have 0...n servlet-services)

Modified:
    cocoon/trunk/tools/archetypes/cocoon-22-archetype-block/src/main/resources/archetype-resources/rcl.properties
    cocoon/trunk/tools/archetypes/cocoon-22-archetype-block/src/main/resources/archetype-resources/src/main/resources/META-INF/cocoon/spring/servlet-service.xml

Modified: cocoon/trunk/tools/archetypes/cocoon-22-archetype-block/src/main/resources/archetype-resources/rcl.properties
URL: http://svn.apache.org/viewvc/cocoon/trunk/tools/archetypes/cocoon-22-archetype-block/src/main/resources/archetype-resources/rcl.properties?rev=578865&r1=578864&r2=578865&view=diff
==============================================================================
--- cocoon/trunk/tools/archetypes/cocoon-22-archetype-block/src/main/resources/archetype-resources/rcl.properties (original)
+++ cocoon/trunk/tools/archetypes/cocoon-22-archetype-block/src/main/resources/archetype-resources/rcl.properties Mon Sep 24 09:09:46 2007
@@ -14,4 +14,4 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 #
-${groupId}.${artifactId}.block%classes-dir=./target/classes
\ No newline at end of file
+${groupId}.${artifactId}.service%classes-dir=./target/classes
\ No newline at end of file

Modified: cocoon/trunk/tools/archetypes/cocoon-22-archetype-block/src/main/resources/archetype-resources/src/main/resources/META-INF/cocoon/spring/servlet-service.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/tools/archetypes/cocoon-22-archetype-block/src/main/resources/archetype-resources/src/main/resources/META-INF/cocoon/spring/servlet-service.xml?rev=578865&r1=578864&r2=578865&view=diff
==============================================================================
--- cocoon/trunk/tools/archetypes/cocoon-22-archetype-block/src/main/resources/archetype-resources/src/main/resources/META-INF/cocoon/spring/servlet-service.xml (original)
+++ cocoon/trunk/tools/archetypes/cocoon-22-archetype-block/src/main/resources/archetype-resources/src/main/resources/META-INF/cocoon/spring/servlet-service.xml Mon Sep 24 09:09:46 2007
@@ -25,9 +25,9 @@
   xmlns:servlet="http://cocoon.apache.org/schema/servlet"
   xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
   http://cocoon.apache.org/schema/servlet http://cocoon.apache.org/schema/servlet/cocoon-servlet-1.0.xsd">
-  
-  <bean id="${groupId}.${artifactId}.block" class="org.apache.cocoon.sitemap.SitemapServlet">
+
+  <bean id="${groupId}.${artifactId}.service" class="org.apache.cocoon.sitemap.SitemapServlet">
     <servlet:context mount-path="/${artifactId}" context-path="blockcontext:/${artifactId}/"/>
   </bean>
-  
+
 </beans>