You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by bd...@apache.org on 2006/06/29 15:33:16 UTC

svn commit: r418040 - /cocoon/whiteboard/example-apps/bricks-archetype/src/main/webapp/WEB-INF/spring/application-components.xml

Author: bdelacretaz
Date: Thu Jun 29 06:33:16 2006
New Revision: 418040

URL: http://svn.apache.org/viewvc?rev=418040&view=rev
Log:
persistence and wiki parsing skeleton code added

Added:
    cocoon/whiteboard/example-apps/bricks-archetype/src/main/webapp/WEB-INF/spring/application-components.xml   (with props)

Added: cocoon/whiteboard/example-apps/bricks-archetype/src/main/webapp/WEB-INF/spring/application-components.xml
URL: http://svn.apache.org/viewvc/cocoon/whiteboard/example-apps/bricks-archetype/src/main/webapp/WEB-INF/spring/application-components.xml?rev=418040&view=auto
==============================================================================
--- cocoon/whiteboard/example-apps/bricks-archetype/src/main/webapp/WEB-INF/spring/application-components.xml (added)
+++ cocoon/whiteboard/example-apps/bricks-archetype/src/main/webapp/WEB-INF/spring/application-components.xml Thu Jun 29 06:33:16 2006
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
+
+<!-- 
+  Note the Spring bug (fixed now, but still present in the version we use:
+  DOCTYPE has to be in the first 5 lines of this file.
+ -->
+
+<!--
+  Copyright 2006 The Apache Software Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+
+<!-- 
+  Java components used for tests
+ -->
+<beans>
+<bean id="ObjectStore"
+  class="org.apache.cocoon.apps.bricks.persistence.impl.DummyObjectStore"
+  singleton="true"/>
+<bean id="WikiParser"
+  class="org.apache.cocoon.apps.bricks.wikiparser.impl.TextileTextParserImpl"
+  singleton="true"/>
+</beans>

Propchange: cocoon/whiteboard/example-apps/bricks-archetype/src/main/webapp/WEB-INF/spring/application-components.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cocoon/whiteboard/example-apps/bricks-archetype/src/main/webapp/WEB-INF/spring/application-components.xml
------------------------------------------------------------------------------
    svn:keywords = Id