blob: 6ab7b702b120be0969c73375c02667684732c4f1 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 1999-2005 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.
-->
<!--+
| This is the BlocksManagerTestCase web-app configurations file
+-->
<!DOCTYPE web-app
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
<!-- Servlet Configuration ========================================== -->
<servlet>
<servlet-name>BlocksManager</servlet-name>
<display-name>BlocksManager</display-name>
<description>BlocksManager</description>
<servlet-class>org.apache.cocoon.blocks.BlocksManager</servlet-class>
<init-param>
<param-name>work-directory</param-name>
<param-value>work</param-value>
</init-param>
<init-param>
<param-name>configurations</param-name>
<param-value>wiring.xml</param-value>
</init-param>
<!--
Set encoding used by the container. If not set the ISO-8859-1 encoding
will be assumed.
Since the servlet specification requires that the ISO-8859-1 encoding
is used (by default), you should never change this value unless
you have a buggy servlet container.
-->
<init-param>
<param-name>container-encoding</param-name>
<param-value>ISO-8859-1</param-value>
</init-param>
</servlet>
<!-- URL space mappings ============================================= -->
<servlet-mapping>
<servlet-name>BlocksManager</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>