2005-08-27 22:15:35 +00:00
|
|
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
2004-07-24 02:06:07 +00:00
|
|
|
<!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>
|
2004-08-05 02:24:00 +00:00
|
|
|
<!-- precompiled servlets -->
|
2005-11-12 05:03:51 +00:00
|
|
|
|
|
|
|
<!-- yeah, i'm lazy, using a jsp instead of a servlet.. -->
|
|
|
|
<servlet-mapping>
|
|
|
|
<servlet-name>net.i2p.router.web.jsp.viewtheme_jsp</servlet-name>
|
|
|
|
<url-pattern>/themes/*</url-pattern>
|
|
|
|
</servlet-mapping>
|
|
|
|
|
2004-07-24 02:06:07 +00:00
|
|
|
<session-config>
|
|
|
|
<session-timeout>
|
|
|
|
30
|
|
|
|
</session-timeout>
|
|
|
|
</session-config>
|
|
|
|
<welcome-file-list>
|
2004-08-05 02:24:00 +00:00
|
|
|
<welcome-file>index.html</welcome-file>
|
|
|
|
<welcome-file>index.jsp</welcome-file>
|
2004-07-24 02:06:07 +00:00
|
|
|
</welcome-file-list>
|
2009-08-02 20:12:16 +00:00
|
|
|
<error-page>
|
|
|
|
<error-code>404</error-code>
|
|
|
|
<location>/error.jsp</location>
|
|
|
|
</error-page>
|
2005-08-27 22:15:35 +00:00
|
|
|
</web-app>
|