Author: nick
Date: Wed Aug 19 14:53:30 2015
New Revision: 1696605

URL: http://svn.apache.org/r1696605
Log:
Start on the 1.11 docs, for the pieces that need updating during development

Added:
    tika/site/src/site/apt/1.11/
    tika/site/src/site/apt/1.11/configuring.apt
    tika/site/src/site/apt/1.11/examples.apt
      - copied unchanged from r1696597, tika/site/src/site/apt/1.10/examples.apt
    tika/site/src/site/apt/1.11/formats.apt
      - copied, changed from r1696597, tika/site/src/site/apt/1.10/formats.apt

Added: tika/site/src/site/apt/1.11/configuring.apt
URL: 
http://svn.apache.org/viewvc/tika/site/src/site/apt/1.11/configuring.apt?rev=1696605&view=auto
==============================================================================
--- tika/site/src/site/apt/1.11/configuring.apt (added)
+++ tika/site/src/site/apt/1.11/configuring.apt Wed Aug 19 14:53:30 2015
@@ -0,0 +1,214 @@
+                          ----------------
+                          Configuring Tika
+                          ----------------
+
+~~ 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.
+
+Configuring Tika
+
+   Out of the box, Apache Tika will attempt to start with all available
+   Detectors and Parsers, running with sensible defaults. For most users,
+   this default configuration will work well.
+
+   This page gives you information on how to configure the various
+   components of Apache Tika, such as Parsers and Detectors, if you need
+   fine-grained control over ordering, exclusions and the like.
+
+%{toc|section=1|fromDepth=1}
+
+* {Configuring Parsers}
+
+    Through the Tika Config xml, it is possible to have a high degree of 
control
+    over which parsers are or aren't used, in what order of preferences etc. 
It 
+    is also possible to override just certain parts, to (for example) have 
"default
+    except for PDF".
+
+    Currently, it is only possible to have a single parser run against a 
document.
+    There is on-going discussion around fallback parsers and combining the 
output
+    of multiple parsers running on a document, but none of these are available 
yet.
+
+    To override some parser certain default behaviours, include the {{{ 
DefaultParser }}}
+    in your configuration, with excludes, then add other parser definitions in.
+    To prevent the {{{ DefaultParser }}} (with its auto-discovery) being used, 
+    simply omit it from your config, and list all other parsers you want 
instead.
+
+    To override just some default behaviour, you can use a Tika Config 
something
+    like this:
+
+---
+<?xml version="1.0" encoding="UTF-8"?>
+<properties>
+  <parsers>
+    <!-- Default Parser for most things, except for 2 mime types, and never
+         use the Executable Parser -->
+    <parser class="org.apache.tika.parser.DefaultParser">
+      <mime-exclude>image/jpeg</mime-exclude>
+      <mime-exclude>application/pdf</mime-exclude>
+      <parser-exclude 
class="org.apache.tika.parser.executable.ExecutableParser"/>
+    </parser>
+    <!-- Use a different parser for PDF -->
+    <parser class="org.apache.tika.parser.EmptyParser">
+      <mime>application/pdf</mime>
+    </parser>
+  </parsers>
+</properties>
+---
+
+    To configure things in code, the key classes to use to build up your own 
custom 
+    parser heirarchy are 
+    
{{{./api/org/apache/tika/parser/DefaultParser.html}org.apache.tika.parser.DefaultParser}},
+    
{{{./api/org/apache/tika/parser/CompositeParser.html}org.apache.tika.parser.CompositeParser}}
+    and
+    
{{{./api/org/apache/tika/parser/ParserDecorator.html}org.apache.tika.parser.ParserDecorator}}.
+
+* {Configuring Detectors}
+
+    Through the Tika Config xml, it is possible to have a high degree of 
control
+    over which detectors are or aren't used, in what order of preferences etc. 
It 
+    is also possible to override just certain parts, to (for example) have 
"default
+    except for no POIFS Container Detction".
+
+    To override some detector certain default behaviours, include the 
+    {{{ DefaultDetector }}}, with any {{{ detector-exclude }}} entries you 
need,
+    in your configuration, then add other detectors definitions in. To prevent 
+    the {{{ DefaultParser }}} (with its auto-discovery) being used, simply 
omit it 
+    from your config, and list all other detectors you want instead.
+
+    To override just some default behaviour, you can use a Tika Config 
something
+    like this:
+
+---
+<?xml version="1.0" encoding="UTF-8"?>
+<properties>
+  <detectors>
+    <!-- All detectors except built-in container ones -->
+    <detector class="org.apache.tika.detect.DefaultDetector">
+      <detector-exclude 
class="org.apache.tika.parser.pkg.ZipContainerDetector"/>
+      <detector-exclude 
class="org.apache.tika.parser.microsoft.POIFSContainerDetector"/>
+    </detector>
+  </detectors>
+</properties>
+---
+
+    Or to just only use certain detectors, you can use a Tika Config something
+    like this:
+
+---
+<?xml version="1.0" encoding="UTF-8"?>
+<properties>
+  <detectors>
+    <!-- Only use these two detectors, and ignore all others -->
+    <detector class="org.apache.tika.parser.pkg.ZipContainerDetector"/>
+    <detector class="org.apache.tika.mime.MimeTypes"/>
+  </detectors>
+</properties>
+---
+
+    In code, the key classes to use to build up your own custom detector
+    heirarchy are 
+    
{{{./api/org/apache/tika/detect/DefaultDetector.html}org.apache.tika.detect.DefaultDetector}}
+    and
+    
{{{./api/org/apache/tika/detect/CompositeDetector.html}org.apache.tika.detect.CompositeDetector}}.
+
+* {Configuring Mime Types}
+
+    TODO Mention non-standard paths, and custom mime type files
+
+* {Configuring Language Identifiers}
+
+    At this time, there is no unified way to configure language identifiers.
+    While the work on that is ongoing, for now you will need to review the
+    {{{./api/}Tika Javadocs}} to see how individual identifiers are configured.
+
+* {Configuring Translators}
+
+    At this time, there is no unified way to configure Translators.
+    While the work on that is ongoing, for now you will need to review the
+    {{{./api/}Tika Javadocs}} to see how individual Translators are configured.
+    
+* {Configuring the Service Loader}
+
+    Tika has a number of service provider types such as parsers, detectors, 
and translators.  
+    The 
{{{./api/org/apache/tika/config/ServiceLoader.html}org.apache.tika.config.ServiceLoader}}
 class provides a registry of each type of provider.  This allows Tika to create
+    implementations such as 
{{{./api/org/apache/tika/parser/DefaultParser.html}org.apache.tika.parser.DefaultParser}},
 
+    
{{{./api/org/apache/tika/language/translate/DefaultTranslator.html}org.apache.tika.language.translate.DefaultTranslator}},
 and 
{{{./api/org/apache/tika/detect/DefaultDetector.html}org.apache.tika.detect.DefaultDetector}}
 
+    that can match the appropriate provider to an incoming piece of content.
+    
+    The ServiceLoader's registry can be populated either statically or 
dynamically.
+    
+    Static
+    Static loading is the default which requires no configuration.  This 
configuration options is used in
+    Tika deployments where the Tika JAR files reside together in the same 
classloader hierarchy.  The services 
+    provides are loaded from provider configuration files located within the 
tika-parsers JAR file at META-INF/services.
+    
+    Dynamic
+    Dynamic loading may be required if the tika service providers will reside 
in different classloaders such as 
+    in OSGi.  To allow a provider created in tika-config.xml to utilize 
dynamically loaded services you need to 
+    configure the ServiceLoader to be dynamic with the following configuration:
+    
+---
+<properties>
+  <service-loader dynamic="true"/>
+  ....
+</properties>
+---
+
+    The ServiceLoader can contains a handler to deal with errors that occur 
during provider initialization.  For example
+    if a class fails to initialize LoadErrorHandler deals with the exception 
that is thrown.
+    This handler can be configured to:
+    
+    IGNORE - (Default) Do nothing when providers fail to initialize.
+    WARN   - Log a warning when providers fail to initialize.
+    THROW  - Throw an exception when providers fail to initialize.
+
+For example to set the LoadErrorHandler to WARN then use the following 
configuration:
+---
+<properties>
+  <service-loader loadErrorHandler="WARN"/>
+  ....
+</properties>
+---
+
+~~ When Translators can have their parameters configured, mention here about
+~~ specifying which single one to use in the Tika Config XML
+
+* {Using a Tika Configuration XML file}
+
+    However you call Tika, the System Property of <<< tika.config >>> is
+    checked first, and the Environment Variable of <<< TIKA_CONFIG >>> is
+    tried next. Setting one of those will cause Tika to use your given
+    Tika Config XML file.
+
+    If you are calling Tika from your own code, then you can pass in the
+    location of your Tika Config XML file when you construct your 
+    <<<TikaConfig>>> instance. From that, you can fetch your configured
+    parser, detectors etc.
+
+---
+TikaConfig config = new TikaConfig("/path/to/tika-config.xml");
+Detector detector = config.getDetector();
+Parser autoDetectParser = new AutoDetectParser(config);
+---
+
+    For users of the Tika App, in addition to the sytem property and the
+    environement variable, you can also use the 
+    <<< --config=[tika-config.xml] >>> option to select a different
+    Tika Config XML file to use
+
+    For users of the Tika Server, in addition to the sytem property and the
+    environement variable, you can also use <<< -c [tika-config.xml] >>> or
+    <<< --config [tika-config.xml] >>> options to select a different
+    Tika Config XML file to use

Copied: tika/site/src/site/apt/1.11/formats.apt (from r1696597, 
tika/site/src/site/apt/1.10/formats.apt)
URL: 
http://svn.apache.org/viewvc/tika/site/src/site/apt/1.11/formats.apt?p2=tika/site/src/site/apt/1.11/formats.apt&p1=tika/site/src/site/apt/1.10/formats.apt&r1=1696597&r2=1696605&rev=1696605&view=diff
==============================================================================
--- tika/site/src/site/apt/1.10/formats.apt (original)
+++ tika/site/src/site/apt/1.11/formats.apt Wed Aug 19 14:53:30 2015
@@ -20,7 +20,7 @@
 Supported Document Formats
 
    This page lists all the document formats supported by the parsers in
-   Apache Tika 1.10. Follow the links to the various parser class javadocs 
+   Apache Tika 1.11. Follow the links to the various parser class javadocs 
    for more detailed information about each document format and how it is 
    parsed by Tika.
 
@@ -299,709 +299,4 @@ Supported Document Formats
 
 Full list of supported formats:
 
-   * 
org.apache.tika.parser.asm.{{{./api/org/apache/tika/parser/asm/ClassParser}ClassParser}}
-
-      * application/java-vm
-
-   * 
org.apache.tika.parser.audio.{{{./api/org/apache/tika/parser/audio/AudioParser}AudioParser}}
-
-      * audio/x-wav
-
-      * audio/x-aiff
-
-      * audio/basic
-
-   * 
org.apache.tika.parser.audio.{{{./api/org/apache/tika/parser/audio/MidiParser}MidiParser}}
-
-      * application/x-midi
-
-      * audio/midi
-
-   * 
org.apache.tika.parser.chm.{{{./api/org/apache/tika/parser/chm/ChmParser}ChmParser}}
-
-      * application/vnd.ms-htmlhelp
-
-      * application/chm
-
-      * application/x-chm
-
-   * 
org.apache.tika.parser.code.{{{./api/org/apache/tika/parser/code/SourceCodeParser}SourceCodeParser}}
-
-      * text/x-java-source
-
-      * text/x-c++src
-
-      * text/x-groovy
-
-   * 
org.apache.tika.parser.crypto.{{{./api/org/apache/tika/parser/crypto/Pkcs7Parser}Pkcs7Parser}}
-
-      * application/pkcs7-signature
-
-      * application/pkcs7-mime
-
-   * 
org.apache.tika.parser.dif.{{{./api/org/apache/tika/parser/dif/DIFParser}DIFParser}}
-
-      * application/dif+xml
-
-   * 
org.apache.tika.parser.dwg.{{{./api/org/apache/tika/parser/dwg/DWGParser}DWGParser}}
-
-      * image/vnd.dwg
-
-   * 
org.apache.tika.parser.epub.{{{./api/org/apache/tika/parser/epub/EpubParser}EpubParser}}
-
-      * application/x-ibooks+zip
-
-      * application/epub+zip
-
-   * 
org.apache.tika.parser.executable.{{{./api/org/apache/tika/parser/executable/ExecutableParser}ExecutableParser}}
-
-      * application/x-elf
-
-      * application/x-sharedlib
-
-      * application/x-executable
-
-      * application/x-msdownload
-
-      * application/x-coredump
-
-      * application/x-object
-
-   * 
org.apache.tika.parser.feed.{{{./api/org/apache/tika/parser/feed/FeedParser}FeedParser}}
-
-      * application/atom+xml
-
-      * application/rss+xml
-
-   * 
org.apache.tika.parser.font.{{{./api/org/apache/tika/parser/font/AdobeFontMetricParser}AdobeFontMetricParser}}
-
-      * application/x-font-adobe-metric
-
-   * 
org.apache.tika.parser.font.{{{./api/org/apache/tika/parser/font/TrueTypeParser}TrueTypeParser}}
-
-      * application/x-font-ttf
-
-   * 
org.apache.tika.parser.gdal.{{{./api/org/apache/tika/parser/gdal/GDALParser}GDALParser}}
-
-      * image/x-ozi
-
-      * application/x-snodas
-
-      * application/x-ecrg-toc
-
-      * image/envisat
-
-      * application/x-doq2
-
-      * application/x-rs2
-
-      * application/x-gsag
-
-      * application/x-ers
-
-      * application/fits
-
-      * application/x-pnm
-
-      * image/adrg
-
-      * image/gif
-
-      * application/x-generic-bin
-
-      * application/x-bt
-
-      * application/x-zmap
-
-      * application/x-hdf
-
-      * image/eir
-
-      * application/x-ace2
-
-      * application/grass-ascii-grid
-
-      * application/x-l1b
-
-      * application/x-gsc
-
-      * image/jp2
-
-      * image/hfa
-
-      * image/fits
-
-      * image/raster
-
-      * application/x-epsilon
-
-      * image/x-srp
-
-      * application/x-envi-hdr
-
-      * application/x-ctable2
-
-      * application/x-srtmhgt
-
-      * application/jaxa-pal-sar
-
-      * application/x-ndf
-
-      * application/sdts-raster
-
-      * application/x-gtx
-
-      * application/x-rst
-
-      * application/x-xyz
-
-      * application/terragen
-
-      * application/x-gs7bg
-
-      * image/arg
-
-      * application/elas
-
-      * image/big-gif
-
-      * application/x-geo-pdf
-
-      * application/x-ctg
-
-      * application/aaigrid
-
-      * application/x-lcp
-
-      * application/x-nwt-grc
-
-      * application/x-fast
-
-      * application/x-usgs-dem
-
-      * application/x-nwt-grd
-
-      * application/x-ingr
-
-      * application/x-envi
-
-      * application/x-rik
-
-      * application/x-blx
-
-      * application/x-wcs
-
-      * image/ceos
-
-      * application/x-ngs-geoid
-
-      * application/x-r
-
-      * image/bmp
-
-      * application/x-http
-
-      * application/x-til
-
-      * application/x-pds
-
-      * application/x-rasterlite
-
-      * application/x-gmt
-
-      * application/x-msgn
-
-      * image/ilwis
-
-      * application/aig
-
-      * application/x-rmf
-
-      * image/x-hdf5-image
-
-      * image/sar-ceos
-
-      * application/x-kro
-
-      * application/vrt
-
-      * application/x-netcdf
-
-      * image/nitf
-
-      * image/png
-
-      * image/geotiff
-
-      * image/x-mff2
-
-      * application/x-webp
-
-      * image/ida
-
-      * application/x-gsbg
-
-      * application/x-ntv2
-
-      * application/x-coasp
-
-      * application/x-los-las
-
-      * application/x-tsx
-
-      * application/x-bag
-
-      * image/fit
-
-      * application/x-lan
-
-      * application/x-map
-
-      * image/jpeg
-
-      * application/x-dods
-
-      * application/jdem
-
-      * application/gff
-
-      * application/x-isis2
-
-      * application/x-isis3
-
-      * application/xpm
-
-      * application/x-pcidsk
-
-      * application/x-gxf
-
-      * application/x-wms
-
-      * application/x-cosar
-
-      * image/bsb
-
-      * application/x-grib
-
-      * application/x-mbtiles
-
-      * application/x-cappi
-
-      * application/x-rpf-toc
-
-      * image/x-mff
-
-      * image/x-dimap
-
-      * image/x-pcraster
-
-      * application/x-ppi
-
-      * application/x-sdat
-
-      * application/pcisdk
-
-      * application/x-cpg
-
-      * application/leveller
-
-      * image/sgi
-
-      * image/x-fujibas
-
-      * image/x-airsar
-
-      * application/x-e00-grid
-
-      * application/x-kml
-
-      * application/x-p-aux
-
-      * application/x-doq1
-
-      * application/dted
-
-      * application/x-dipex
-
-   * 
org.apache.tika.parser.geo.topic.{{{./api/org/apache/tika/parser/geo/topic/GeoParser}GeoParser}}
-
-      * application/geotopic
-
-   * 
org.apache.tika.parser.geoinfo.{{{./api/org/apache/tika/parser/geoinfo/GeographicInformationParser}GeographicInformationParser}}
-
-      * text/iso19139+xml
-
-   * 
org.apache.tika.parser.grib.{{{./api/org/apache/tika/parser/grib/GribParser}GribParser}}
-
-      * application/x-grib2
-
-   * 
org.apache.tika.parser.hdf.{{{./api/org/apache/tika/parser/hdf/HDFParser}HDFParser}}
-
-      * application/x-hdf
-
-   * 
org.apache.tika.parser.html.{{{./api/org/apache/tika/parser/html/HtmlParser}HtmlParser}}
-
-      * application/x-asp
-
-      * application/xhtml+xml
-
-      * application/vnd.wap.xhtml+xml
-
-      * text/html
-
-   * 
org.apache.tika.parser.image.{{{./api/org/apache/tika/parser/image/BPGParser}BPGParser}}
-
-      * image/bpg
-
-      * image/x-bpg
-
-   * 
org.apache.tika.parser.image.{{{./api/org/apache/tika/parser/image/ImageParser}ImageParser}}
-
-      * image/x-ms-bmp
-
-      * image/png
-
-      * image/x-icon
-
-      * image/vnd.wap.wbmp
-
-      * image/gif
-
-      * image/bmp
-
-      * image/x-xcf
-
-   * 
org.apache.tika.parser.image.{{{./api/org/apache/tika/parser/image/PSDParser}PSDParser}}
-
-      * image/vnd.adobe.photoshop
-
-   * 
org.apache.tika.parser.image.{{{./api/org/apache/tika/parser/image/WebPParser}WebPParser}}
-
-      * image/webp
-
-   * 
org.apache.tika.parser.iptc.{{{./api/org/apache/tika/parser/iptc/IptcAnpaParser}IptcAnpaParser}}
-
-      * text/vnd.iptc.anpa
-
-   * 
org.apache.tika.parser.isatab.{{{./api/org/apache/tika/parser/isatab/ISArchiveParser}ISArchiveParser}}
-
-      * application/x-isatab
-
-   * 
org.apache.tika.parser.iwork.{{{./api/org/apache/tika/parser/iwork/IWorkPackageParser}IWorkPackageParser}}
-
-      * application/vnd.apple.iwork
-
-      * application/vnd.apple.numbers
-
-      * application/vnd.apple.keynote
-
-      * application/vnd.apple.pages
-
-   * 
org.apache.tika.parser.mail.{{{./api/org/apache/tika/parser/mail/RFC822Parser}RFC822Parser}}
-
-      * message/rfc822
-
-   * 
org.apache.tika.parser.mat.{{{./api/org/apache/tika/parser/mat/MatParser}MatParser}}
-
-      * application/x-matlab-data
-
-   * 
org.apache.tika.parser.mbox.{{{./api/org/apache/tika/parser/mbox/MboxParser}MboxParser}}
-
-      * application/mbox
-
-   * 
org.apache.tika.parser.mbox.{{{./api/org/apache/tika/parser/mbox/OutlookPSTParser}OutlookPSTParser}}
-
-      * application/vnd.ms-outlook-pst
-
-   * 
org.apache.tika.parser.microsoft.{{{./api/org/apache/tika/parser/microsoft/JackcessParser}JackcessParser}}
-
-      * application/x-msaccess
-
-   * 
org.apache.tika.parser.microsoft.{{{./api/org/apache/tika/parser/microsoft/OfficeParser}OfficeParser}}
-
-      * application/x-mspublisher
-
-      * application/x-tika-msoffice
-
-      * application/vnd.ms-excel
-
-      * application/sldworks
-
-      * application/x-tika-msworks-spreadsheet
-
-      * application/vnd.ms-powerpoint
-
-      * application/x-tika-msoffice-embedded; format=ole10_native
-
-      * application/vnd.ms-project
-
-      * application/x-tika-ooxml-protected
-
-      * application/msword
-
-      * application/vnd.ms-outlook
-
-      * application/vnd.visio
-
-   * 
org.apache.tika.parser.microsoft.{{{./api/org/apache/tika/parser/microsoft/OldExcelParser}OldExcelParser}}
-
-      * application/vnd.ms-excel.sheet.3
-
-      * application/vnd.ms-excel.sheet.2
-
-      * application/vnd.ms-excel.workspace.3
-
-      * application/vnd.ms-excel.workspace.4
-
-      * application/vnd.ms-excel.sheet.4
-
-   * 
org.apache.tika.parser.microsoft.{{{./api/org/apache/tika/parser/microsoft/TNEFParser}TNEFParser}}
-
-      * application/x-tnef
-
-      * application/ms-tnef
-
-      * application/vnd.ms-tnef
-
-   * 
org.apache.tika.parser.microsoft.ooxml.{{{./api/org/apache/tika/parser/microsoft/ooxml/OOXMLParser}OOXMLParser}}
-
-      * application/vnd.ms-excel.sheet.macroenabled.12
-
-      * application/vnd.ms-powerpoint.presentation.macroenabled.12
-
-      * application/vnd.openxmlformats-officedocument.spreadsheetml.template
-
-      * application/vnd.openxmlformats-officedocument.wordprocessingml.document
-
-      * application/vnd.openxmlformats-officedocument.presentationml.template
-
-      * application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
-
-      * 
application/vnd.openxmlformats-officedocument.presentationml.presentation
-
-      * application/vnd.ms-excel.addin.macroenabled.12
-
-      * application/vnd.ms-word.document.macroenabled.12
-
-      * application/vnd.ms-excel.template.macroenabled.12
-
-      * application/vnd.openxmlformats-officedocument.wordprocessingml.template
-
-      * application/vnd.ms-powerpoint.slideshow.macroenabled.12
-
-      * application/vnd.ms-powerpoint.addin.macroenabled.12
-
-      * application/vnd.ms-word.template.macroenabled.12
-
-      * application/x-tika-ooxml
-
-      * application/vnd.openxmlformats-officedocument.presentationml.slideshow
-
-   * 
org.apache.tika.parser.mp3.{{{./api/org/apache/tika/parser/mp3/Mp3Parser}Mp3Parser}}
-
-      * audio/mpeg
-
-   * 
org.apache.tika.parser.mp4.{{{./api/org/apache/tika/parser/mp4/MP4Parser}MP4Parser}}
-
-      * video/3gpp2
-
-      * video/mp4
-
-      * video/quicktime
-
-      * audio/mp4
-
-      * application/mp4
-
-      * video/x-m4v
-
-      * video/3gpp
-
-   * 
org.apache.tika.parser.netcdf.{{{./api/org/apache/tika/parser/netcdf/NetCDFParser}NetCDFParser}}
-
-      * application/x-netcdf
-
-   * 
org.apache.tika.parser.ocr.{{{./api/org/apache/tika/parser/ocr/TesseractOCRParser}TesseractOCRParser}}
-
-      * image/x-ms-bmp
-
-      * image/jpeg
-
-      * image/png
-
-      * image/tiff
-
-      * image/gif
-
-   * 
org.apache.tika.parser.odf.{{{./api/org/apache/tika/parser/odf/OpenDocumentParser}OpenDocumentParser}}
-
-      * application/x-vnd.oasis.opendocument.graphics-template
-
-      * application/vnd.sun.xml.writer
-
-      * application/x-vnd.oasis.opendocument.text
-
-      * application/x-vnd.oasis.opendocument.text-web
-
-      * application/x-vnd.oasis.opendocument.spreadsheet-template
-
-      * application/vnd.oasis.opendocument.formula-template
-
-      * application/vnd.oasis.opendocument.presentation
-
-      * application/vnd.oasis.opendocument.image-template
-
-      * application/x-vnd.oasis.opendocument.graphics
-
-      * application/vnd.oasis.opendocument.chart-template
-
-      * application/vnd.oasis.opendocument.presentation-template
-
-      * application/x-vnd.oasis.opendocument.image-template
-
-      * application/vnd.oasis.opendocument.formula
-
-      * application/x-vnd.oasis.opendocument.image
-
-      * application/vnd.oasis.opendocument.spreadsheet-template
-
-      * application/x-vnd.oasis.opendocument.chart-template
-
-      * application/x-vnd.oasis.opendocument.formula
-
-      * application/vnd.oasis.opendocument.spreadsheet
-
-      * application/vnd.oasis.opendocument.text-web
-
-      * application/vnd.oasis.opendocument.text-template
-
-      * application/vnd.oasis.opendocument.text
-
-      * application/x-vnd.oasis.opendocument.formula-template
-
-      * application/x-vnd.oasis.opendocument.spreadsheet
-
-      * application/x-vnd.oasis.opendocument.chart
-
-      * application/vnd.oasis.opendocument.text-master
-
-      * application/x-vnd.oasis.opendocument.text-master
-
-      * application/x-vnd.oasis.opendocument.text-template
-
-      * application/vnd.oasis.opendocument.graphics
-
-      * application/vnd.oasis.opendocument.graphics-template
-
-      * application/x-vnd.oasis.opendocument.presentation
-
-      * application/vnd.oasis.opendocument.image
-
-      * application/x-vnd.oasis.opendocument.presentation-template
-
-      * application/vnd.oasis.opendocument.chart
-
-   * 
org.apache.tika.parser.pdf.{{{./api/org/apache/tika/parser/pdf/PDFParser}PDFParser}}
-
-      * application/pdf
-
-   * 
org.apache.tika.parser.pkg.{{{./api/org/apache/tika/parser/pkg/CompressorParser}CompressorParser}}
-
-      * application/x-bzip
-
-      * application/x-bzip2
-
-      * application/gzip
-
-      * application/x-gzip
-
-      * application/x-xz
-
-   * 
org.apache.tika.parser.pkg.{{{./api/org/apache/tika/parser/pkg/PackageParser}PackageParser}}
-
-      * application/x-tar
-
-      * application/x-tika-unix-dump
-
-      * application/java-archive
-
-      * application/x-7z-compressed
-
-      * application/x-archive
-
-      * application/x-cpio
-
-      * application/zip
-
-   * 
org.apache.tika.parser.pkg.{{{./api/org/apache/tika/parser/pkg/RarParser}RarParser}}
-
-      * application/x-rar-compressed
-
-   * 
org.apache.tika.parser.rtf.{{{./api/org/apache/tika/parser/rtf/RTFParser}RTFParser}}
-
-      * application/rtf
-
-   * 
org.apache.tika.parser.txt.{{{./api/org/apache/tika/parser/txt/TXTParser}TXTParser}}
-
-      * text/plain
-
-   * 
org.apache.tika.parser.video.{{{./api/org/apache/tika/parser/video/FLVParser}FLVParser}}
-
-      * video/x-flv
-
-   * 
org.apache.tika.parser.xml.{{{./api/org/apache/tika/parser/xml/DcXMLParser}DcXMLParser}}
-
-      * application/xml
-
-      * image/svg+xml
-
-   * 
org.apache.tika.parser.xml.{{{./api/org/apache/tika/parser/xml/FictionBookParser}FictionBookParser}}
-
-      * application/x-fictionbook+xml
-
-   * org.gagravarr.tika.{{{./api/org/gagravarr/tika/FlacParser}FlacParser}}
-
-      * audio/x-oggflac
-
-      * audio/x-flac
-
-   * org.gagravarr.tika.{{{./api/org/gagravarr/tika/OggParser}OggParser}}
-
-      * application/kate
-
-      * application/ogg
-
-      * audio/x-oggpcm
-
-      * video/x-oggyuv
-
-      * video/x-dirac
-
-      * video/x-ogm
-
-      * audio/ogg
-
-      * video/x-ogguvs
-
-      * video/theora
-
-      * video/x-oggrgb
-
-      * video/ogg
-
-   * org.gagravarr.tika.{{{./api/org/gagravarr/tika/OpusParser}OpusParser}}
-
-      * audio/opus
-
-      * audio/ogg; codecs=opus
-
-   * org.gagravarr.tika.{{{./api/org/gagravarr/tika/SpeexParser}SpeexParser}}
-
-      * audio/speex
-
-      * audio/ogg; codecs=speex
-
-   * org.gagravarr.tika.{{{./api/org/gagravarr/tika/VorbisParser}VorbisParser}}
-
-      * audio/vorbis
-
+    TODO Populate this at release time


Reply via email to