svn commit: r1505157 - in /cocoon/cocoon3/trunk/cocoon-rest-optional/rcl-config/WEB-INF: applicationContext.xml classes/
| Newsgroups | gmane.text.xml.cocoon.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: thorsten
Date: Sat Jul 20 16:14:43 2013
New Revision: 1505157
URL: http://svn.apache.org/r1505157
Log:
Fixing rcl
Added:
cocoon/cocoon3/trunk/cocoon-rest-optional/rcl-config/WEB-INF/applicationContext.xml
Removed:
cocoon/cocoon3/trunk/cocoon-rest-optional/rcl-config/WEB-INF/classes/
Added: cocoon/cocoon3/trunk/cocoon-rest-optional/rcl-config/WEB-INF/applicationContext.xml
URL: http://svn.apache.org/viewvc/cocoon/cocoon3/trunk/cocoon-rest-optional/rcl-config/WEB-INF/applicationContext.xml?rev=1505157&view=auto
==============================================================================
--- cocoon/cocoon3/trunk/cocoon-rest-optional/rcl-config/WEB-INF/applicationContext.xml (added)
+++ cocoon/cocoon3/trunk/cocoon-rest-optional/rcl-config/WEB-INF/applicationContext.xml Sat Jul 20 16:14:43 2013
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ 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.
+-->
+<!-- @version $Id: applicationContext.xml 1304308 2012-03-23 12:19:11Z ilgrosso $ -->
+<beans xmlns="http://www.springframework.org/schema/beans"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:util="http://www.springframework.org/schema/util"
+ xmlns:configurator="http://cocoon.apache.org/schema/configurator"
+ xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
+ http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd
+ http://cocoon.apache.org/schema/configurator http://cocoon.apache.org/schema/configurator/cocoon-configurator-1.0.1.xsd">
+
+ <!-- Activate Cocoon Spring Configurator -->
+ <configurator:settings>
+ <configurator:property name="org.apache.cocoon.reloading.sitemap" value="true"/>
+ <configurator:property name="org.apache.cocoon.containerencoding" value="UTF-8"/>
+ <configurator:property name="org.apache.cocoon.exception.ProcessingException.unroll" value="true"/>
+ </configurator:settings>
+
+ <!-- Configure Logback -->
+ <bean name="org.apache.cocoon.spring.configurator.logback"
+ class="org.apache.cocoon.spring.configurator.logback.LogbackConfigurator"
+ scope="singleton">
+ <property name="settings" ref="org.apache.cocoon.configuration.Settings"/>
+ <property name="resource" value="/WEB-INF/classes/logback.xml"/>
+ </bean>
+
+</beans>