annotate src/main/webapp/WEB-INF/web.xml @ 0:f4f8570d1c56

initial OTP form
author smith@nwoca.org
date Mon, 12 Nov 2012 16:29:11 +0000
parents
children
rev   line source
0
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
1 <?xml version="1.0" encoding="UTF-8"?>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
2 <!DOCTYPE web-app
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
3 PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
4 "http://java.sun.com/dtd/web-app_2_3.dtd">
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
5 <web-app>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
6 <display-name>ssdt.forms Tapestry 5 Application</display-name>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
7 <context-param>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
8 <!-- The only significant configuration for Tapestry 5, this informs Tapestry
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
9 of where to look for pages, components and mixins. -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
10 <param-name>tapestry.app-package</param-name>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
11 <param-value>org.ssdt_ohio.devel.forms</param-value>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
12 </context-param>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
13 <!--
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
14 Specify some additional Modules for two different execution
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
15 modes: development and qa.
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
16 Remember that the default execution mode is production
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
17 -->
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
18 <context-param>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
19 <param-name>tapestry.development-modules</param-name>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
20 <param-value>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
21 org.ssdt_ohio.devel.forms.services.DevelopmentModule
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
22 </param-value>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
23 </context-param>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
24 <context-param>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
25 <param-name>tapestry.qa-modules</param-name>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
26 <param-value>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
27 org.ssdt_ohio.devel.forms.services.QaModule
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
28 </param-value>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
29 </context-param>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
30 <filter>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
31 <filter-name>app</filter-name>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
32 <filter-class>org.apache.tapestry5.TapestryFilter</filter-class>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
33 </filter>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
34 <filter-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
35 <filter-name>app</filter-name>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
36 <url-pattern>/*</url-pattern>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
37 </filter-mapping>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
38 </web-app>
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
39