You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by cz...@apache.org on 2006/12/25 22:04:51 UTC

svn commit: r490173 - in /cocoon/trunk/core/cocoon-xml/cocoon-xml-impl/src/main/resources: ./ META-INF/ META-INF/cocoon/ META-INF/cocoon/spring/ META-INF/cocoon/spring/cocoon-xml-impl.xml

Author: cziegeler
Date: Mon Dec 25 13:04:51 2006
New Revision: 490173

URL: http://svn.apache.org/viewvc?view=rev&rev=490173
Log:
Add configuration for parsers

Added:
    cocoon/trunk/core/cocoon-xml/cocoon-xml-impl/src/main/resources/
    cocoon/trunk/core/cocoon-xml/cocoon-xml-impl/src/main/resources/META-INF/
    cocoon/trunk/core/cocoon-xml/cocoon-xml-impl/src/main/resources/META-INF/cocoon/
    cocoon/trunk/core/cocoon-xml/cocoon-xml-impl/src/main/resources/META-INF/cocoon/spring/
    cocoon/trunk/core/cocoon-xml/cocoon-xml-impl/src/main/resources/META-INF/cocoon/spring/cocoon-xml-impl.xml   (with props)

Added: cocoon/trunk/core/cocoon-xml/cocoon-xml-impl/src/main/resources/META-INF/cocoon/spring/cocoon-xml-impl.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/core/cocoon-xml/cocoon-xml-impl/src/main/resources/META-INF/cocoon/spring/cocoon-xml-impl.xml?view=auto&rev=490173
==============================================================================
--- cocoon/trunk/core/cocoon-xml/cocoon-xml-impl/src/main/resources/META-INF/cocoon/spring/cocoon-xml-impl.xml (added)
+++ cocoon/trunk/core/cocoon-xml/cocoon-xml-impl/src/main/resources/META-INF/cocoon/spring/cocoon-xml-impl.xml Mon Dec 25 13:04:51 2006
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//EN"
+    "http://www.springframework.org/dtd/spring-beans-2.0.dtd">
+<!--
+  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$ -->
+<beans>
+  <!-- The DOM Parser -->
+  <bean name="org.apache.cocoon.core.xml.DOMParser"
+        class="org.apache.cocoon.core.xml.impl.JaxpDOMParser">
+    <property name="validate" value="false"/>
+  </bean>
+
+  <!-- The SAX Parser -->
+  <bean name="org.apache.cocoon.core.xml.SAXParser"
+        class="org.apache.cocoon.core.xml.impl.JaxpSAXParser">
+    <property name="validate" value="false"/>
+  </bean>
+</beans>
\ No newline at end of file

Propchange: cocoon/trunk/core/cocoon-xml/cocoon-xml-impl/src/main/resources/META-INF/cocoon/spring/cocoon-xml-impl.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cocoon/trunk/core/cocoon-xml/cocoon-xml-impl/src/main/resources/META-INF/cocoon/spring/cocoon-xml-impl.xml
------------------------------------------------------------------------------
    svn:keywords = Id