]> git.pld-linux.org Git - packages/cocoon.git/commitdiff
- configuration for web application in servlets area
authorbonkey <bonkey@bonkey.pl.eu.org>
Tue, 11 Sep 2001 16:26:28 +0000 (16:26 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    cocoon-web.xml -> 1.1

cocoon-web.xml [new file with mode: 0644]

diff --git a/cocoon-web.xml b/cocoon-web.xml
new file mode 100644 (file)
index 0000000..6c77757
--- /dev/null
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<!-- 
+     This is the web-app configurations that allow Cocoon to work under
+     Apache Tomcat. Please, follow the installation section of the
+     documentation for more information about installing Cocoon on Tomcat 
+-->
+
+<!DOCTYPE web-app
+    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
+    "http://java.sun.com/j2ee/dtds/web-app_2.2.dtd">
+
+<web-app>
+ <servlet>
+  <servlet-name>org.apache.cocoon.Cocoon</servlet-name>
+  <servlet-class>org.apache.cocoon.Cocoon</servlet-class>
+  <init-param>
+   <param-name>properties</param-name>
+   <param-value>WEB-INF/cocoon.properties</param-value>
+  </init-param>
+ </servlet>
+ <servlet-mapping>
+  <servlet-name>org.apache.cocoon.Cocoon</servlet-name>
+  <url-pattern>*.xml</url-pattern>
+ </servlet-mapping>
+</web-app>
This page took 0.074004 seconds and 4 git commands to generate.