pylucene 3.5.0-3
[pylucene.git] / lucene-java-3.5.0 / lucene / contrib / xml-query-parser / src / demo / WebContent / WEB-INF / web.xml
diff --git a/lucene-java-3.5.0/lucene/contrib/xml-query-parser/src/demo/WebContent/WEB-INF/web.xml b/lucene-java-3.5.0/lucene/contrib/xml-query-parser/src/demo/WebContent/WEB-INF/web.xml
new file mode 100644 (file)
index 0000000..b0388e0
--- /dev/null
@@ -0,0 +1,49 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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.
+-->
+<web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
+       <display-name>
+       LuceneXmlQueryWebDemo</display-name>
+       <servlet>
+               <description>
+               Servlet demonstrating XMLQueryParser</description>
+               <display-name>
+               FormBasedXmlQueryDemo</display-name>
+               <servlet-name>FormBasedXmlQueryDemo</servlet-name>
+               <servlet-class>
+               org.apache.lucene.xmlparser.webdemo.FormBasedXmlQueryDemo</servlet-class>
+               <init-param>
+                       <description>
+                       Name of query file held in /WEB-INF</description>
+                       <param-name>xslFile</param-name>
+                       <param-value>query.xsl</param-value>
+               </init-param>
+               <init-param>
+                       <description>
+                       Default field used in standard Lucene QueryParser used in UserQuery tag</description>
+                       <param-name>defaultStandardQueryParserField</param-name>
+                       <param-value>jobDescription</param-value>
+               </init-param>
+       </servlet>
+       <servlet-mapping>
+               <servlet-name>FormBasedXmlQueryDemo</servlet-name>
+               <url-pattern>/FormBasedXmlQueryDemo</url-pattern>
+       </servlet-mapping>
+       <welcome-file-list>
+               <welcome-file>index.jsp</welcome-file>
+       </welcome-file-list>
+</web-app>