| 430 |
ashish |
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>support 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>in.shop2020.support</param-value>
|
|
|
12 |
</context-param>
|
|
|
13 |
<filter>
|
|
|
14 |
<filter-name>app</filter-name>
|
|
|
15 |
<filter-class>org.apache.tapestry5.TapestryFilter</filter-class>
|
|
|
16 |
</filter>
|
|
|
17 |
<filter-mapping>
|
|
|
18 |
<filter-name>app</filter-name>
|
|
|
19 |
<url-pattern>/*</url-pattern>
|
|
|
20 |
</filter-mapping>
|
|
|
21 |
</web-app>
|
|
|
22 |
|