Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
920 | dev | 1 | <?xml version="1.0" encoding="ISO-8859-1"?> |
2 | |||
3 | <!DOCTYPE web-app |
||
4 | PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" |
||
5 | "http://java.sun.com/dtd/web-app_2_3.dtd"> |
||
6 | |||
7 | <web-app> |
||
8 | |||
9 | <filter> |
||
949 | dev | 10 | <filter-name>Profiler Filter</filter-name> |
11 | <filter-class>ak.hostadmiral.core.servlet.ProfilerFilter</filter-class> |
||
12 | </filter> |
||
13 | <filter> |
||
920 | dev | 14 | <filter-name>Encoding Filter</filter-name> |
924 | dev | 15 | <filter-class>ak.hostadmiral.core.servlet.EncodingFilter</filter-class> |
920 | dev | 16 | </filter> |
17 | <filter> |
||
18 | <filter-name>Hibernate Filter</filter-name> |
||
924 | dev | 19 | <filter-class>ak.hostadmiral.core.servlet.HibernateFilter</filter-class> |
920 | dev | 20 | <init-param> |
21 | <param-name>register</param-name> |
||
22 | <param-value> |
||
924 | dev | 23 | ak.hostadmiral.core.model.UserManager; |
24 | ak.hostadmiral.core.model.MailboxManager; |
||
25 | ak.hostadmiral.core.model.MailAliasManager; |
||
26 | ak.hostadmiral.core.model.MailAliasDestinationManager; |
||
27 | ak.hostadmiral.core.model.SystemUserManager; |
||
28 | ak.hostadmiral.core.model.InetDomainManager |
||
920 | dev | 29 | </param-value> |
30 | </init-param> |
||
31 | </filter> |
||
32 | <filter> |
||
33 | <filter-name>Login Filter</filter-name> |
||
924 | dev | 34 | <filter-class>ak.hostadmiral.core.servlet.LoginFilter</filter-class> |
920 | dev | 35 | <init-param> |
36 | <param-name>loginUrl</param-name> |
||
37 | <param-value>/system/login.do?backpath=</param-value> |
||
38 | </init-param> |
||
39 | <init-param> |
||
40 | <param-name>passUrls</param-name> |
||
41 | <param-value>/system/*</param-value> |
||
42 | </init-param> |
||
43 | </filter> |
||
44 | |||
45 | <filter-mapping> |
||
949 | dev | 46 | <filter-name>Profiler Filter</filter-name> |
47 | <url-pattern>/*</url-pattern> |
||
48 | </filter-mapping> |
||
49 | <filter-mapping> |
||
920 | dev | 50 | <filter-name>Encoding Filter</filter-name> |
51 | <url-pattern>/*</url-pattern> |
||
52 | </filter-mapping> |
||
53 | <filter-mapping> |
||
54 | <filter-name>Hibernate Filter</filter-name> |
||
55 | <url-pattern>/*</url-pattern> |
||
56 | </filter-mapping> |
||
57 | <filter-mapping> |
||
58 | <filter-name>Login Filter</filter-name> |
||
59 | <url-pattern>/*</url-pattern> |
||
60 | </filter-mapping> |
||
61 | |||
62 | <!-- Standard Action Servlet Configuration (with debugging) --> |
||
63 | <servlet> |
||
64 | <servlet-name>action</servlet-name> |
||
65 | <servlet-class>org.apache.struts.action.ActionServlet</servlet-class> |
||
66 | <init-param> |
||
67 | <param-name>config</param-name> |
||
68 | <param-value>/WEB-INF/struts-config.xml</param-value> |
||
69 | </init-param> |
||
70 | <init-param> |
||
71 | <param-name>debug</param-name> |
||
72 | <param-value>2</param-value> |
||
73 | </init-param> |
||
74 | <init-param> |
||
75 | <param-name>detail</param-name> |
||
76 | <param-value>2</param-value> |
||
77 | </init-param> |
||
78 | <load-on-startup>2</load-on-startup> |
||
79 | </servlet> |
||
80 | |||
81 | |||
82 | <!-- Standard Action Servlet Mapping --> |
||
83 | <servlet-mapping> |
||
84 | <servlet-name>action</servlet-name> |
||
85 | <url-pattern>*.do</url-pattern> |
||
86 | </servlet-mapping> |
||
87 | |||
88 | |||
89 | <!-- The Usual Welcome File List --> |
||
90 | <welcome-file-list> |
||
91 | <welcome-file>index.do</welcome-file> |
||
92 | <welcome-file>index.html</welcome-file> |
||
93 | </welcome-file-list> |
||
94 | |||
95 | |||
96 | <!-- Struts Tag Library Descriptors --> |
||
97 | <taglib> |
||
98 | <taglib-uri>/tags/struts-bean</taglib-uri> |
||
99 | <taglib-location>/WEB-INF/struts-bean.tld</taglib-location> |
||
100 | </taglib> |
||
101 | |||
102 | <taglib> |
||
103 | <taglib-uri>/tags/struts-html</taglib-uri> |
||
104 | <taglib-location>/WEB-INF/struts-html.tld</taglib-location> |
||
105 | </taglib> |
||
106 | |||
107 | <taglib> |
||
108 | <taglib-uri>/tags/struts-logic</taglib-uri> |
||
109 | <taglib-location>/WEB-INF/struts-logic.tld</taglib-location> |
||
110 | </taglib> |
||
111 | |||
112 | <taglib> |
||
113 | <taglib-uri>/tags/struts-nested</taglib-uri> |
||
114 | <taglib-location>/WEB-INF/struts-nested.tld</taglib-location> |
||
115 | </taglib> |
||
116 | |||
117 | <taglib> |
||
118 | <taglib-uri>/tags/struts-tiles</taglib-uri> |
||
119 | <taglib-location>/WEB-INF/struts-tiles.tld</taglib-location> |
||
120 | </taglib> |
||
121 | |||
122 | <taglib> |
||
123 | <taglib-uri>/ak/backpath</taglib-uri> |
||
124 | <taglib-location>/WEB-INF/ak-backpath.tld</taglib-location> |
||
125 | </taglib> |
||
126 | |||
127 | <taglib> |
||
924 | dev | 128 | <taglib-uri>/ak/hostadmiral/core</taglib-uri> |
129 | <taglib-location>/WEB-INF/hostadmiral-core.tld</taglib-location> |
||
920 | dev | 130 | </taglib> |
131 | |||
132 | </web-app> |