blob: ba5db323be98ded1674e901377d0aa68c89210b2 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER
Copyright 2008, 2010 Oracle and/or its affiliates. All rights reserved.
Copyright 2009 IBM. All rights reserved.
Use is subject to license terms.
Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except in compliance with the License. You may obtain a copy
of the License at http://www.apache.org/licenses/LICENSE-2.0. You can also
obtain a copy of the License at http://odftoolkit.org/docs/license.txt
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5">
<!-- display name -->
<display-name>ODF Validator Application</display-name>
<!-- some needed application values, change if needed -->
<context-param>
<!-- application title, shown in the header of the application -->
<param-name>APPLICATION_TITLE</param-name>
<param-value>ODF Validator 1.2</param-value>
</context-param>
<context-param>
<!-- name for setting-storing, used in the settings database -->
<param-name>PROPERTY_APPLICATION_NAME</param-name>
<param-value>odfvalidator</param-value>
</context-param>
<context-param>
<!-- email of the developer, used when exceptions are thrown. Get them by email, like a stacktrace -->
<param-name>DEVELOPER_EMAIL</param-name>
<param-value>odf-dev AT incubator.apache.org</param-value>
</context-param>
<context-param>
<!-- email of the application owner, shown in the top right corner for the user -->
<param-name>CONTACT_EMAIL</param-name>
<param-value>odf-dev AT incubator.apache.org</param-value>
</context-param>
<context-param>
<!-- the icon of the donator of this service, used in the footer -->
<param-name>SUPPORTER_ICON_URL</param-name>
<param-value>http://opendocsociety.org/organisation/logo/png/opendocsociety_logo_normal_color-on-trans-200x42/;download</param-value>
</context-param>
<context-param>
<!-- the site of the donator of this service, used in the footer on the their icon -->
<param-name>SUPPORTER_URL</param-name>
<param-value>http://www.opendocsociety.org/</param-value>
</context-param>
<context-param>
<!-- the name of the donator of this service, used as tool tip on their icon -->
<param-name>SUPPORTER_TITLE</param-name>
<param-value>OpenDoc Society</param-value>
</context-param>
<context-param>
<!-- the favicon of the donator of this service, used as icon on browser tab and left of URL -->
<param-name>SUPPORTER_FAVICON_URL</param-name>
<param-value>http://www.opendocsociety.org/favicon/;download</param-value>
</context-param>
<servlet>
<servlet-name>InfoPage</servlet-name>
<jsp-file>/jsp/info/index.jsp</jsp-file>
</servlet>
<servlet-mapping>
<servlet-name>InfoPage</servlet-name>
<url-pattern>/info.html</url-pattern>
</servlet-mapping>
<!-- welcome file list -->
<welcome-file-list>
<welcome-file>/jsp/index.jsp</welcome-file>
</welcome-file-list>
</web-app>