TIKA-111: Missing license headers
[tika.git] / src / main / resources / tika-config.xml
blobba18dcc770636e7ce6558c1ab43ca3a0fd006e88
1 <?xml version="1.0" encoding="UTF-8"?>
3 <!--
4    Licensed to the Apache Software Foundation (ASF) under one or more
5    contributor license agreements.  See the NOTICE file distributed with
6    this work for additional information regarding copyright ownership.
7    The ASF licenses this file to You under the Apache License, Version 2.0
8    (the "License"); you may not use this file except in compliance with
9    the License.  You may obtain a copy of the License at
11        http://www.apache.org/licenses/LICENSE-2.0
13    Unless required by applicable law or agreed to in writing, software
14    distributed under the License is distributed on an "AS IS" BASIS,
15    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16    See the License for the specific language governing permissions and
17    limitations under the License.
18 -->
20 <properties>
22     <mimeTypeRepository resource="/org/apache/tika/mime/tika-mimetypes.xml" magic="false"/>
24     <parsers>
26         <parser name="text-xml" class="org.apache.tika.parser.xml.XMLParser">
27                 <mime>application/xml</mime>
28         </parser>
30         <parser name="parse-msword" class="org.apache.tika.parser.microsoft.WordParser">
31                 <mime>application/msword</mime>
32         </parser>
34         <parser name="parse-msexcel" class="org.apache.tika.parser.microsoft.ExcelParser">
35                 <mime>application/vnd.ms-excel</mime>
36         </parser>
38         <parser name="parse-mspowerpoint" class="org.apache.tika.parser.microsoft.PowerPointParser">
39                 <mime>application/vnd.ms-powerpoint</mime>
40         </parser>
42         <parser name="parse-html" class="org.apache.tika.parser.html.HtmlParser">
43                 <mime>text/html</mime>
44                 <mime>application/x-asp</mime>
45         </parser>
47         <parser mame="parse-rtf" class="org.apache.tika.parser.rtf.RTFParser">
48                 <mime>application/rtf</mime>
49         </parser>
51         <parser name="parse-pdf" class="org.apache.tika.parser.pdf.PDFParser">
52                 <mime>application/pdf</mime>
53         </parser>
55         <parser name="parse-txt" class="org.apache.tika.parser.txt.TXTParser">
56                 <mime>text/plain</mime>
57         </parser>
59         <parser name="parse-openoffice" class="org.apache.tika.parser.opendocument.OpenOfficeParser">            
60                 <mime>application/vnd.sun.xml.writer</mime>
61                 <mime>application/vnd.oasis.opendocument.text</mime>
62                 <mime>application/vnd.oasis.opendocument.graphics</mime>
63                 <mime>application/vnd.oasis.opendocument.presentation</mime>
64                 <mime>application/vnd.oasis.opendocument.spreadsheet</mime>
65                 <mime>application/vnd.oasis.opendocument.chart</mime>
66                 <mime>application/vnd.oasis.opendocument.image</mime>
67                 <mime>application/vnd.oasis.opendocument.formula</mime>
68                 <mime>application/vnd.oasis.opendocument.text-master</mime>
69                 <mime>application/vnd.oasis.opendocument.text-web</mime>
70                 <mime>application/vnd.oasis.opendocument.text-template</mime>
71                 <mime>application/vnd.oasis.opendocument.graphics-template</mime>
72                 <mime>application/vnd.oasis.opendocument.presentation-template</mime>
73                 <mime>application/vnd.oasis.opendocument.spreadsheet-template</mime>
74                 <mime>application/vnd.oasis.opendocument.chart-template</mime>
75                 <mime>application/vnd.oasis.opendocument.image-template</mime>
76                 <mime>application/vnd.oasis.opendocument.formula-template</mime>
77                 <mime>application/x-vnd.oasis.opendocument.text</mime>
78                 <mime>application/x-vnd.oasis.opendocument.graphics</mime>
79                 <mime>application/x-vnd.oasis.opendocument.presentation</mime>
80                 <mime>application/x-vnd.oasis.opendocument.spreadsheet</mime>
81                 <mime>application/x-vnd.oasis.opendocument.chart</mime>
82                 <mime>application/x-vnd.oasis.opendocument.image</mime>
83                 <mime>application/x-vnd.oasis.opendocument.formula</mime>
84                 <mime>application/x-vnd.oasis.opendocument.text-master</mime>
85                 <mime>application/x-vnd.oasis.opendocument.text-web</mime>
86                 <mime>application/x-vnd.oasis.opendocument.text-template</mime>
87                 <mime>application/x-vnd.oasis.opendocument.graphics-template</mime>
88                 <mime>application/x-vnd.oasis.opendocument.presentation-template</mime>
89                 <mime>application/x-vnd.oasis.opendocument.spreadsheet-template</mime>
90                 <mime>application/x-vnd.oasis.opendocument.chart-template</mime>
91                 <mime>application/x-vnd.oasis.opendocument.image-template</mime>
92                 <mime>application/x-vnd.oasis.opendocument.formula-template</mime>
93         </parser>
95     </parsers>
97 </properties>