Changeset eb42e5a62522f6d6a3e9c0ff996a82140085f314
- Timestamp:
- 08/25/07 21:53:22
(1 year ago)
- Author:
- Christopher Jung <bktheg@web.de>
- git-committer:
- Christopher Jung <bktheg@web.de> 1188071602 +0200
- git-parent:
[580c77b6bd47b580c3ada881555461d886be7a50]
- git-author:
- Christopher Jung <bktheg@web.de> 1188071602 +0200
- Message:
Web.xml auf Servlet-API 2.4 aktuallisiert
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rae09dfe |
reb42e5a |
|
| 1 | 1 | <?xml version="1.0" encoding="ISO-8859-1"?> |
|---|
| 2 | | <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"> |
|---|
| 3 | 2 | <!-- |
|---|
| 4 | 3 | Drifting Souls 2 |
|---|
| … | … | |
| 19 | 18 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
|---|
| 20 | 19 | --> |
|---|
| 21 | | <web-app> |
|---|
| | 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"> |
|---|
| 22 | 24 | <!-- General description of your web application --> |
|---|
| 23 | 25 | |
|---|
| … | … | |
| 28 | 30 | |
|---|
| 29 | 31 | <context-param> |
|---|
| | 32 | <description>Die DS2-Hauptkonfigurationsverzeichnis</description> |
|---|
| 30 | 33 | <param-name>configdir</param-name> |
|---|
| 31 | 34 | <param-value>/home/bktheg/Projects/dsj/web/WEB-INF/cfg/</param-value> |
|---|
| 32 | | <description> |
|---|
| 33 | | Die DS2-Hauptkonfigurationsverzeichnis |
|---|
| 34 | | </description> |
|---|
| 35 | 35 | </context-param> |
|---|
| 36 | 36 | <context-param> |
|---|
| … | … | |
| 40 | 40 | |
|---|
| 41 | 41 | <servlet> |
|---|
| | 42 | <description>Main DS Servlet</description> |
|---|
| 42 | 43 | <servlet-name>ds</servlet-name> |
|---|
| 43 | 44 | <servlet-class>net.driftingsouls.ds2.server.framework.DriftingSoulsServlet</servlet-class> |
|---|
| 44 | | <description> |
|---|
| 45 | | Main DS Servlet |
|---|
| 46 | | </description> |
|---|
| 47 | 45 | <!-- Load this servlet at server startup time --> |
|---|
| 48 | 46 | <load-on-startup>1</load-on-startup> |
|---|