| 1 |
<?xml version="1.0" encoding="ISO-8859-1"?> |
|---|
| 2 |
<!-- |
|---|
| 3 |
Drifting Souls 2 |
|---|
| 4 |
Copyright (c) 2006 Christopher Jung |
|---|
| 5 |
|
|---|
| 6 |
This library is free software; you can redistribute it and/or |
|---|
| 7 |
modify it under the terms of the GNU Lesser General Public |
|---|
| 8 |
License as published by the Free Software Foundation; either |
|---|
| 9 |
version 2.1 of the License, or (at your option) any later version. |
|---|
| 10 |
|
|---|
| 11 |
This library is distributed in the hope that it will be useful, |
|---|
| 12 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 13 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|---|
| 14 |
Lesser General Public License for more details. |
|---|
| 15 |
|
|---|
| 16 |
You should have received a copy of the GNU Lesser General Public |
|---|
| 17 |
License along with this library; if not, write to the Free Software |
|---|
| 18 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
|---|
| 19 |
--> |
|---|
| 20 |
<web-app xmlns="http://java.sun.com/xml/ns/j2ee" |
|---|
| 21 |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|---|
| 22 |
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" |
|---|
| 23 |
version="2.4"> |
|---|
| 24 |
<!-- General description of your web application --> |
|---|
| 25 |
|
|---|
| 26 |
<display-name>Drifing Souls</display-name> |
|---|
| 27 |
<description> |
|---|
| 28 |
Dies ist die Java Version von Drifting Souls 2 |
|---|
| 29 |
</description> |
|---|
| 30 |
|
|---|
| 31 |
<context-param> |
|---|
| 32 |
<description>Die DS2-Hauptkonfigurationsverzeichnis</description> |
|---|
| 33 |
<param-name>configdir</param-name> |
|---|
| 34 |
<param-value>/home/bktheg/Projects/dsj/web/WEB-INF/cfg/</param-value> |
|---|
| 35 |
</context-param> |
|---|
| 36 |
<context-param> |
|---|
| 37 |
<param-name>logger</param-name> |
|---|
| 38 |
<param-value>org.apache.commons.logging.impl.SimpleLog</param-value> |
|---|
| 39 |
</context-param> |
|---|
| 40 |
|
|---|
| 41 |
<filter> |
|---|
| 42 |
<filter-name>DSRequestFilter</filter-name> |
|---|
| 43 |
<filter-class>net.driftingsouls.ds2.server.framework.pipeline.DefaultServletRequestFilter</filter-class> |
|---|
| 44 |
</filter> |
|---|
| 45 |
|
|---|
| 46 |
<filter-mapping> |
|---|
| 47 |
<filter-name>DSRequestFilter</filter-name> |
|---|
| 48 |
<url-pattern>/*</url-pattern> |
|---|
| 49 |
</filter-mapping> |
|---|
| 50 |
|
|---|
| 51 |
<listener> |
|---|
| 52 |
<listener-class>net.driftingsouls.ds2.server.framework.DefaultServletContextListener</listener-class> |
|---|
| 53 |
</listener> |
|---|
| 54 |
</web-app> |
|---|