Mercurial > public > ssdtforms
view src/main/webapp/WEB-INF/web.xml @ 3:4ce973027b2a
increase size of jira issue field
author | smith@nwoca.org |
---|---|
date | Tue, 01 Nov 2016 19:28:55 +0100 |
parents | f4f8570d1c56 |
children |
line wrap: on
line source
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"> <web-app> <display-name>ssdt.forms Tapestry 5 Application</display-name> <context-param> <!-- The only significant configuration for Tapestry 5, this informs Tapestry of where to look for pages, components and mixins. --> <param-name>tapestry.app-package</param-name> <param-value>org.ssdt_ohio.devel.forms</param-value> </context-param> <!-- Specify some additional Modules for two different execution modes: development and qa. Remember that the default execution mode is production --> <context-param> <param-name>tapestry.development-modules</param-name> <param-value> org.ssdt_ohio.devel.forms.services.DevelopmentModule </param-value> </context-param> <context-param> <param-name>tapestry.qa-modules</param-name> <param-value> org.ssdt_ohio.devel.forms.services.QaModule </param-value> </context-param> <filter> <filter-name>app</filter-name> <filter-class>org.apache.tapestry5.TapestryFilter</filter-class> </filter> <filter-mapping> <filter-name>app</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> </web-app>