summaryrefslogtreecommitdiff
path: root/orkweb/context/WEB-INF/web.xml
blob: 7fd4fa37f63cfa606a12a0e8f41dd4f629392667 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?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">
<!-- generated by Spindle, http://spindle.sourceforge.net -->


<web-app>
    <display-name>orkweb</display-name>
    <context-param>
    	<param-name>Log4jConfigFile</param-name>
    	<param-value>c:/oreka/orkweb/log4j.properties</param-value>
    </context-param>
    <context-param>
    	<param-name>HibernateConfigFile</param-name>
    	<param-value>c:/oreka/orkweb/mysql.hbm.xml</param-value>
    </context-param>
    <context-param>
    	<param-name>Debug</param-name>
    	<param-value>true</param-value>
    </context-param>
    <filter>
        <filter-name>redirect</filter-name>
        <filter-class>org.apache.tapestry.RedirectFilter</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>redirect</filter-name>
        <url-pattern>/</url-pattern>
    </filter-mapping>
 	<listener>
		<listener-class>net.sf.oreka.orkweb.ContextListener</listener-class>
	</listener>
    <servlet>
        <servlet-name>orkweb</servlet-name>
        <servlet-class>org.apache.tapestry.ApplicationServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>orkweb</servlet-name>
        <url-pattern>/app</url-pattern>
    </servlet-mapping>
</web-app>