Changeset 848 for trunk/www/WEB-INF/web.xml
- Timestamp:
- Jun 30, 2005, 11:15:42 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/WEB-INF/web.xml
r672 r848 29 29 30 30 <web-app> 31 <display-name>BASE</display-name> 32 <description> 33 Welcome to BASE 34 </description> 31 <display-name>BASE</display-name> 32 <description> 33 The BASE 2 web application. 34 </description> 35 35 36 <error-page> 36 37 <exception-type>java.lang.Throwable</exception-type> 37 38 <location>/exception/exception.jsp</location> 38 39 </error-page> 40 41 <!-- The View servlet used to download files in view mode --> 39 42 <servlet> 40 43 <servlet-name>view</servlet-name> … … 48 51 </servlet> 49 52 53 <!-- The Download servlet used to download files in download mode --> 50 54 <servlet> 51 55 <servlet-name>download</servlet-name> … … 71 75 <url-pattern>/my_base/files/view/*</url-pattern> 72 76 </servlet-mapping> 73 77 78 <!-- A filter that sets the character encoding on all *.jsp files --> 79 <filter> 80 <filter-name>characterEncoding</filter-name> 81 <filter-class>net.sf.basedb.clients.web.servlet.CharacterEncodingFilter</filter-class> 82 <init-param> 83 <param-name>characterEncoding</param-name> 84 <param-value>ISO-8859-1</param-value> 85 <!-- 86 <param-value>UTF-8</param-value> 87 --> 88 </init-param> 89 </filter> 90 91 <filter-mapping> 92 <filter-name>characterEncoding</filter-name> 93 <url-pattern>*.jsp</url-pattern> 94 </filter-mapping> 74 95 75 96 </web-app>
Note: See TracChangeset
for help on using the changeset viewer.