2008-05-02 15:18:38 -07:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
2008-06-19 13:56:24 -07:00
|
|
|
Copyright 2008 ZXing authors
|
2008-05-02 15:18:38 -07:00
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
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.
|
|
|
|
-->
|
2009-08-13 04:11:48 -07:00
|
|
|
<!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>
|
2008-05-02 15:18:38 -07:00
|
|
|
|
|
|
|
<display-name>zxing.org</display-name>
|
|
|
|
|
2009-08-13 04:11:48 -07:00
|
|
|
<distributable/>
|
2008-08-12 13:09:21 -07:00
|
|
|
|
2009-08-13 04:11:48 -07:00
|
|
|
<listener>
|
|
|
|
<listener-class>org.apache.commons.fileupload.servlet.FileCleanerCleanup</listener-class>
|
|
|
|
</listener>
|
|
|
|
|
2008-05-02 15:18:38 -07:00
|
|
|
<servlet>
|
|
|
|
<servlet-name>DecodeServlet</servlet-name>
|
|
|
|
<servlet-class>com.google.zxing.web.DecodeServlet</servlet-class>
|
|
|
|
<load-on-startup>1</load-on-startup>
|
|
|
|
</servlet>
|
|
|
|
|
|
|
|
<servlet-mapping>
|
|
|
|
<servlet-name>DecodeServlet</servlet-name>
|
2012-11-27 15:34:04 -08:00
|
|
|
<url-pattern>/w/decode</url-pattern>
|
2008-05-02 15:18:38 -07:00
|
|
|
</servlet-mapping>
|
2009-08-13 04:11:48 -07:00
|
|
|
<servlet-mapping>
|
|
|
|
<servlet-name>jsp</servlet-name>
|
|
|
|
<url-pattern>*.jspx</url-pattern>
|
|
|
|
</servlet-mapping>
|
2008-05-02 15:18:38 -07:00
|
|
|
|
2009-08-13 04:11:48 -07:00
|
|
|
<welcome-file-list>
|
|
|
|
<welcome-file>index.jspx</welcome-file>
|
|
|
|
</welcome-file-list>
|
|
|
|
|
2008-05-02 15:18:38 -07:00
|
|
|
</web-app>
|