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