2008-12-09 04:08:12 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<web-app
|
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
|
xmlns="http://java.sun.com/xml/ns/javaee"
|
|
|
|
|
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
|
|
|
|
|
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
|
|
|
|
|
id="WebApp_ID"
|
|
|
|
|
version="2.5">
|
|
|
|
|
|
|
|
|
|
<display-name>album</display-name>
|
|
|
|
|
<welcome-file-list>
|
|
|
|
|
<welcome-file>index.html</welcome-file>
|
|
|
|
|
</welcome-file-list>
|
2007-04-01 02:44:17 +00:00
|
|
|
|
2008-03-17 00:56:56 +00:00
|
|
|
<servlet>
|
|
|
|
|
<servlet-name>album</servlet-name>
|
|
|
|
|
<servlet-class>org.forkalsrud.album.web.AlbumServlet</servlet-class>
|
|
|
|
|
</servlet>
|
|
|
|
|
|
|
|
|
|
<servlet>
|
|
|
|
|
<servlet-name>velocity</servlet-name>
|
|
|
|
|
<servlet-class>org.apache.velocity.tools.view.servlet.VelocityViewServlet</servlet-class>
|
|
|
|
|
</servlet>
|
|
|
|
|
|
|
|
|
|
<servlet-mapping>
|
|
|
|
|
<servlet-name>velocity</servlet-name>
|
|
|
|
|
<url-pattern>/WEB-INF/velocity/*</url-pattern>
|
|
|
|
|
</servlet-mapping>
|
|
|
|
|
|
|
|
|
|
<servlet-mapping>
|
|
|
|
|
<servlet-name>album</servlet-name>
|
2008-12-22 04:59:00 +00:00
|
|
|
<url-pattern>/photos/*</url-pattern>
|
2008-03-17 00:56:56 +00:00
|
|
|
</servlet-mapping>
|
2007-04-01 02:44:17 +00:00
|
|
|
|
|
|
|
|
</web-app>
|