Author: nick
Date: Mon May 8 16:32:46 2017
New Revision: 1794407
URL: http://svn.apache.org/viewvc?rev=1794407&view=rev
Log:
Update the Git URL
Modified:
tika/site/publish/0.10/parser_guide.html
tika/site/publish/0.7/parser_guide.html
tika/site/publish/0.8/parser_guide.html
tika/site/publish/0.9/parser_guide.html
tika/site/publish/1.0/parser_guide.html
tika/site/publish/1.1/parser_guide.html
tika/site/publish/1.10/parser_guide.html
tika/site/publish/1.11/parser_guide.html
tika/site/publish/1.12/parser_guide.html
tika/site/publish/1.13/parser_guide.html
tika/site/publish/1.14/parser_guide.html
tika/site/publish/1.2/parser_guide.html
tika/site/publish/1.3/parser_guide.html
tika/site/publish/1.4/parser_guide.html
tika/site/publish/1.5/parser_guide.html
tika/site/publish/1.6/parser_guide.html
tika/site/publish/1.7/parser_guide.html
tika/site/publish/1.8/parser_guide.html
tika/site/publish/1.9/parser_guide.html
tika/site/src/site/apt/0.10/parser_guide.apt
tika/site/src/site/apt/0.7/parser_guide.apt
tika/site/src/site/apt/0.8/parser_guide.apt
tika/site/src/site/apt/0.9/parser_guide.apt
tika/site/src/site/apt/1.0/parser_guide.apt
tika/site/src/site/apt/1.1/parser_guide.apt
tika/site/src/site/apt/1.10/parser_guide.apt
tika/site/src/site/apt/1.11/parser_guide.apt
tika/site/src/site/apt/1.12/parser_guide.apt
tika/site/src/site/apt/1.13/parser_guide.apt
tika/site/src/site/apt/1.14/parser_guide.apt
tika/site/src/site/apt/1.2/parser_guide.apt
tika/site/src/site/apt/1.3/parser_guide.apt
tika/site/src/site/apt/1.4/parser_guide.apt
tika/site/src/site/apt/1.5/parser_guide.apt
tika/site/src/site/apt/1.6/parser_guide.apt
tika/site/src/site/apt/1.7/parser_guide.apt
tika/site/src/site/apt/1.8/parser_guide.apt
tika/site/src/site/apt/1.9/parser_guide.apt
Modified: tika/site/publish/0.10/parser_guide.html
URL:
http://svn.apache.org/viewvc/tika/site/publish/0.10/parser_guide.html?rev=1794407&r1=1794406&r2=1794407&view=diff
==============================================================================
--- tika/site/publish/0.10/parser_guide.html (original)
+++ tika/site/publish/0.10/parser_guide.html Mon May 8 16:32:46 2017
@@ -99,7 +99,7 @@
<p>The <a href="./gettingstarted.html">Getting Started</a> document describes
how to build Apache Tika from sources and how to start using Tika in an
application. Pay close attention and follow the instructions in the
"Getting and building the sources" section.</p></div>
<div class="section">
<h3><a name="Add_your_MIME-Type">Add your MIME-Type</a></h3>
-<p>You first need to modify <a class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
in order to Tika can map the file extension with its MIME-Type. You should add
something like this:</p>
+<p>You first need to modify <a class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
in order to Tika can map the file extension with its MIME-Type. You should add
something like this:</p>
<div>
<pre> <mime-type type="application/hello">
<glob pattern="*.hi"/>
@@ -178,7 +178,7 @@ public class HelloParser implements Pars
<div class="section">
<h3><a name="List_the_new_parser">List the new parser</a></h3>
<p>Finally, you should explicitly tell the AutoDetectParser to include your
new parser. This step is only needed if you want to use the AutoDetectParser
functionality. If you figure out the correct parser in a different way, it
isn't needed. </p>
-<p>List your new parser in: <a class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
+<p>List your new parser in: <a class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
</div>
<div id="sidebar">
<div id="navigation">
@@ -376,7 +376,7 @@ public class HelloParser implements Pars
</div>
<div id="footer">
<p>
- Copyright © 2016
+ Copyright © 2017
<a href="http://www.apache.org/">The Apache Software Foundation</a>.
Site powered by <a href="http://maven.apache.org/">Apache Maven</a>.
Search powered by
Modified: tika/site/publish/0.7/parser_guide.html
URL:
http://svn.apache.org/viewvc/tika/site/publish/0.7/parser_guide.html?rev=1794407&r1=1794406&r2=1794407&view=diff
==============================================================================
--- tika/site/publish/0.7/parser_guide.html (original)
+++ tika/site/publish/0.7/parser_guide.html Mon May 8 16:32:46 2017
@@ -99,7 +99,7 @@
<p>The <a href="./gettingstarted.html">Getting Started</a> document describes
how to build Apache Tika from sources and how to start using Tika in an
application. Pay close attention and follow the instructions in the
"Getting and building the sources" section.</p></div>
<div class="section">
<h3><a name="Add_your_MIME-Type">Add your MIME-Type</a></h3>
-<p>You first need to modify <a class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
in order to Tika can map the file extension with its MIME-Type. You should add
something like this:</p>
+<p>You first need to modify <a class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
in order to Tika can map the file extension with its MIME-Type. You should add
something like this:</p>
<div>
<pre> <mime-type type="application/hello">
<glob pattern="*.hi"/>
@@ -178,7 +178,7 @@ public class HelloParser implements Pars
<div class="section">
<h3><a name="List_the_new_parser">List the new parser</a></h3>
<p>Finally, you should explicitly tell the AutoDetectParser to include your
new parser. This step is only needed if you want to use the AutoDetectParser
functionality. If you figure out the correct parser in a different way, it
isn't needed. </p>
-<p>List your new parser in: <a class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
+<p>List your new parser in: <a class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
</div>
<div id="sidebar">
<div id="navigation">
@@ -376,7 +376,7 @@ public class HelloParser implements Pars
</div>
<div id="footer">
<p>
- Copyright © 2016
+ Copyright © 2017
<a href="http://www.apache.org/">The Apache Software Foundation</a>.
Site powered by <a href="http://maven.apache.org/">Apache Maven</a>.
Search powered by
Modified: tika/site/publish/0.8/parser_guide.html
URL:
http://svn.apache.org/viewvc/tika/site/publish/0.8/parser_guide.html?rev=1794407&r1=1794406&r2=1794407&view=diff
==============================================================================
--- tika/site/publish/0.8/parser_guide.html (original)
+++ tika/site/publish/0.8/parser_guide.html Mon May 8 16:32:46 2017
@@ -99,7 +99,7 @@
<p>The <a href="./gettingstarted.html">Getting Started</a> document describes
how to build Apache Tika from sources and how to start using Tika in an
application. Pay close attention and follow the instructions in the
"Getting and building the sources" section.</p></div>
<div class="section">
<h3><a name="Add_your_MIME-Type">Add your MIME-Type</a></h3>
-<p>You first need to modify <a class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
in order to Tika can map the file extension with its MIME-Type. You should add
something like this:</p>
+<p>You first need to modify <a class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
in order to Tika can map the file extension with its MIME-Type. You should add
something like this:</p>
<div>
<pre> <mime-type type="application/hello">
<glob pattern="*.hi"/>
@@ -178,7 +178,7 @@ public class HelloParser implements Pars
<div class="section">
<h3><a name="List_the_new_parser">List the new parser</a></h3>
<p>Finally, you should explicitly tell the AutoDetectParser to include your
new parser. This step is only needed if you want to use the AutoDetectParser
functionality. If you figure out the correct parser in a different way, it
isn't needed. </p>
-<p>List your new parser in: <a class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
+<p>List your new parser in: <a class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
</div>
<div id="sidebar">
<div id="navigation">
@@ -376,7 +376,7 @@ public class HelloParser implements Pars
</div>
<div id="footer">
<p>
- Copyright © 2016
+ Copyright © 2017
<a href="http://www.apache.org/">The Apache Software Foundation</a>.
Site powered by <a href="http://maven.apache.org/">Apache Maven</a>.
Search powered by
Modified: tika/site/publish/0.9/parser_guide.html
URL:
http://svn.apache.org/viewvc/tika/site/publish/0.9/parser_guide.html?rev=1794407&r1=1794406&r2=1794407&view=diff
==============================================================================
--- tika/site/publish/0.9/parser_guide.html (original)
+++ tika/site/publish/0.9/parser_guide.html Mon May 8 16:32:46 2017
@@ -99,7 +99,7 @@
<p>The <a href="./gettingstarted.html">Getting Started</a> document describes
how to build Apache Tika from sources and how to start using Tika in an
application. Pay close attention and follow the instructions in the
"Getting and building the sources" section.</p></div>
<div class="section">
<h3><a name="Add_your_MIME-Type">Add your MIME-Type</a></h3>
-<p>You first need to modify <a class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
in order to Tika can map the file extension with its MIME-Type. You should add
something like this:</p>
+<p>You first need to modify <a class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
in order to Tika can map the file extension with its MIME-Type. You should add
something like this:</p>
<div>
<pre> <mime-type type="application/hello">
<glob pattern="*.hi"/>
@@ -178,7 +178,7 @@ public class HelloParser implements Pars
<div class="section">
<h3><a name="List_the_new_parser">List the new parser</a></h3>
<p>Finally, you should explicitly tell the AutoDetectParser to include your
new parser. This step is only needed if you want to use the AutoDetectParser
functionality. If you figure out the correct parser in a different way, it
isn't needed. </p>
-<p>List your new parser in: <a class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
+<p>List your new parser in: <a class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
</div>
<div id="sidebar">
<div id="navigation">
@@ -376,7 +376,7 @@ public class HelloParser implements Pars
</div>
<div id="footer">
<p>
- Copyright © 2016
+ Copyright © 2017
<a href="http://www.apache.org/">The Apache Software Foundation</a>.
Site powered by <a href="http://maven.apache.org/">Apache Maven</a>.
Search powered by
Modified: tika/site/publish/1.0/parser_guide.html
URL:
http://svn.apache.org/viewvc/tika/site/publish/1.0/parser_guide.html?rev=1794407&r1=1794406&r2=1794407&view=diff
==============================================================================
--- tika/site/publish/1.0/parser_guide.html (original)
+++ tika/site/publish/1.0/parser_guide.html Mon May 8 16:32:46 2017
@@ -99,7 +99,7 @@
<p>The <a href="./gettingstarted.html">Getting Started</a> document describes
how to build Apache Tika from sources and how to start using Tika in an
application. Pay close attention and follow the instructions in the
"Getting and building the sources" section.</p></div>
<div class="section">
<h3><a name="Add_your_MIME-Type">Add your MIME-Type</a></h3>
-<p>Tika loads the core, standard MIME-Types from the file
"org/apache/tika/mime/tika-mimetypes.xml", which comes from <a
class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
. If your new MIME-Type is a standard one which is missing from Tika, submit a
patch for this file!</p>
+<p>Tika loads the core, standard MIME-Types from the file
"org/apache/tika/mime/tika-mimetypes.xml", which comes from <a
class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
. If your new MIME-Type is a standard one which is missing from Tika, submit a
patch for this file!</p>
<p>If your MIME-Type needs adding, create a new file
"org/apache/tika/mime/custom-mimetypes.xml" in your codebase. You
should add to it something like this:</p>
<div>
<pre> <?xml version="1.0" encoding="UTF-8"?>
@@ -174,7 +174,7 @@ public class HelloParser extends Abstrac
<div class="section">
<h3><a name="List_the_new_parser">List the new parser</a></h3>
<p>Finally, you should explicitly tell the AutoDetectParser to include your
new parser. This step is only needed if you want to use the AutoDetectParser
functionality. If you figure out the correct parser in a different way, it
isn't needed. </p>
-<p>List your new parser in: <a class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
+<p>List your new parser in: <a class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
</div>
<div id="sidebar">
<div id="navigation">
@@ -372,7 +372,7 @@ public class HelloParser extends Abstrac
</div>
<div id="footer">
<p>
- Copyright © 2016
+ Copyright © 2017
<a href="http://www.apache.org/">The Apache Software Foundation</a>.
Site powered by <a href="http://maven.apache.org/">Apache Maven</a>.
Search powered by
Modified: tika/site/publish/1.1/parser_guide.html
URL:
http://svn.apache.org/viewvc/tika/site/publish/1.1/parser_guide.html?rev=1794407&r1=1794406&r2=1794407&view=diff
==============================================================================
--- tika/site/publish/1.1/parser_guide.html (original)
+++ tika/site/publish/1.1/parser_guide.html Mon May 8 16:32:46 2017
@@ -99,7 +99,7 @@
<p>The <a href="./gettingstarted.html">Getting Started</a> document describes
how to build Apache Tika from sources and how to start using Tika in an
application. Pay close attention and follow the instructions in the
"Getting and building the sources" section.</p></div>
<div class="section">
<h3><a name="Add_your_MIME-Type">Add your MIME-Type</a></h3>
-<p>You first need to modify <a class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
in order to Tika can map the file extension with its MIME-Type. You should add
something like this:</p>
+<p>You first need to modify <a class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
in order to Tika can map the file extension with its MIME-Type. You should add
something like this:</p>
<div>
<pre> <mime-type type="application/hello">
<glob pattern="*.hi"/>
@@ -178,7 +178,7 @@ public class HelloParser implements Pars
<div class="section">
<h3><a name="List_the_new_parser">List the new parser</a></h3>
<p>Finally, you should explicitly tell the AutoDetectParser to include your
new parser. This step is only needed if you want to use the AutoDetectParser
functionality. If you figure out the correct parser in a different way, it
isn't needed. </p>
-<p>List your new parser in: <a class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
+<p>List your new parser in: <a class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
</div>
<div id="sidebar">
<div id="navigation">
@@ -376,7 +376,7 @@ public class HelloParser implements Pars
</div>
<div id="footer">
<p>
- Copyright © 2016
+ Copyright © 2017
<a href="http://www.apache.org/">The Apache Software Foundation</a>.
Site powered by <a href="http://maven.apache.org/">Apache Maven</a>.
Search powered by
Modified: tika/site/publish/1.10/parser_guide.html
URL:
http://svn.apache.org/viewvc/tika/site/publish/1.10/parser_guide.html?rev=1794407&r1=1794406&r2=1794407&view=diff
==============================================================================
--- tika/site/publish/1.10/parser_guide.html (original)
+++ tika/site/publish/1.10/parser_guide.html Mon May 8 16:32:46 2017
@@ -99,7 +99,7 @@
<p>The <a href="./gettingstarted.html">Getting Started</a> document describes
how to build Apache Tika from sources and how to start using Tika in an
application. Pay close attention and follow the instructions in the
"Getting and building the sources" section.</p></div>
<div class="section">
<h3><a name="Add_your_MIME-Type">Add your MIME-Type</a></h3>
-<p>Tika loads the core, standard MIME-Types from the file
"org/apache/tika/mime/tika-mimetypes.xml", which comes from <a
class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
. If your new MIME-Type is a standard one which is missing from Tika, submit a
patch for this file!</p>
+<p>Tika loads the core, standard MIME-Types from the file
"org/apache/tika/mime/tika-mimetypes.xml", which comes from <a
class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
. If your new MIME-Type is a standard one which is missing from Tika, submit a
patch for this file!</p>
<p>If your MIME-Type needs adding, create a new file
"org/apache/tika/mime/custom-mimetypes.xml" in your codebase. You
should add to it something like this:</p>
<div>
<pre> <?xml version="1.0" encoding="UTF-8"?>
@@ -174,7 +174,7 @@ public class HelloParser extends Abstrac
<div class="section">
<h3><a name="List_the_new_parser">List the new parser</a></h3>
<p>Finally, you should explicitly tell the AutoDetectParser to include your
new parser. This step is only needed if you want to use the AutoDetectParser
functionality. If you figure out the correct parser in a different way, it
isn't needed. </p>
-<p>List your new parser in: <a class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
+<p>List your new parser in: <a class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
</div>
<div id="sidebar">
<div id="navigation">
@@ -410,7 +410,7 @@ public class HelloParser extends Abstrac
</div>
<div id="footer">
<p>
- Copyright © 2016
+ Copyright © 2017
<a href="http://www.apache.org/">The Apache Software Foundation</a>.
Site powered by <a href="http://maven.apache.org/">Apache Maven</a>.
Search powered by
Modified: tika/site/publish/1.11/parser_guide.html
URL:
http://svn.apache.org/viewvc/tika/site/publish/1.11/parser_guide.html?rev=1794407&r1=1794406&r2=1794407&view=diff
==============================================================================
--- tika/site/publish/1.11/parser_guide.html (original)
+++ tika/site/publish/1.11/parser_guide.html Mon May 8 16:32:46 2017
@@ -99,7 +99,7 @@
<p>The <a href="./gettingstarted.html">Getting Started</a> document describes
how to build Apache Tika from sources and how to start using Tika in an
application. Pay close attention and follow the instructions in the
"Getting and building the sources" section.</p></div>
<div class="section">
<h3><a name="Add_your_MIME-Type">Add your MIME-Type</a></h3>
-<p>Tika loads the core, standard MIME-Types from the file
"org/apache/tika/mime/tika-mimetypes.xml", which comes from <a
class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
. If your new MIME-Type is a standard one which is missing from Tika, submit a
patch for this file!</p>
+<p>Tika loads the core, standard MIME-Types from the file
"org/apache/tika/mime/tika-mimetypes.xml", which comes from <a
class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
. If your new MIME-Type is a standard one which is missing from Tika, submit a
patch for this file!</p>
<p>If your MIME-Type needs adding, create a new file
"org/apache/tika/mime/custom-mimetypes.xml" in your codebase. You
should add to it something like this:</p>
<div>
<pre> <?xml version="1.0" encoding="UTF-8"?>
@@ -174,7 +174,7 @@ public class HelloParser extends Abstrac
<div class="section">
<h3><a name="List_the_new_parser">List the new parser</a></h3>
<p>Finally, you should explicitly tell the AutoDetectParser to include your
new parser. This step is only needed if you want to use the AutoDetectParser
functionality. If you figure out the correct parser in a different way, it
isn't needed. </p>
-<p>List your new parser in: <a class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
+<p>List your new parser in: <a class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
</div>
<div id="sidebar">
<div id="navigation">
@@ -410,7 +410,7 @@ public class HelloParser extends Abstrac
</div>
<div id="footer">
<p>
- Copyright © 2016
+ Copyright © 2017
<a href="http://www.apache.org/">The Apache Software Foundation</a>.
Site powered by <a href="http://maven.apache.org/">Apache Maven</a>.
Search powered by
Modified: tika/site/publish/1.12/parser_guide.html
URL:
http://svn.apache.org/viewvc/tika/site/publish/1.12/parser_guide.html?rev=1794407&r1=1794406&r2=1794407&view=diff
==============================================================================
--- tika/site/publish/1.12/parser_guide.html (original)
+++ tika/site/publish/1.12/parser_guide.html Mon May 8 16:32:46 2017
@@ -99,7 +99,7 @@
<p>The <a href="./gettingstarted.html">Getting Started</a> document describes
how to build Apache Tika from sources and how to start using Tika in an
application. Pay close attention and follow the instructions in the
"Getting and building the sources" section.</p></div>
<div class="section">
<h3><a name="Add_your_MIME-Type">Add your MIME-Type</a></h3>
-<p>Tika loads the core, standard MIME-Types from the file
"org/apache/tika/mime/tika-mimetypes.xml", which comes from <a
class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
. If your new MIME-Type is a standard one which is missing from Tika, submit a
patch for this file!</p>
+<p>Tika loads the core, standard MIME-Types from the file
"org/apache/tika/mime/tika-mimetypes.xml", which comes from <a
class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
. If your new MIME-Type is a standard one which is missing from Tika, submit a
patch for this file!</p>
<p>If your MIME-Type needs adding, create a new file
"org/apache/tika/mime/custom-mimetypes.xml" in your codebase. You
should add to it something like this:</p>
<div>
<pre> <?xml version="1.0" encoding="UTF-8"?>
@@ -174,7 +174,7 @@ public class HelloParser extends Abstrac
<div class="section">
<h3><a name="List_the_new_parser">List the new parser</a></h3>
<p>Finally, you should explicitly tell the AutoDetectParser to include your
new parser. This step is only needed if you want to use the AutoDetectParser
functionality. If you figure out the correct parser in a different way, it
isn't needed. </p>
-<p>List your new parser in: <a class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
+<p>List your new parser in: <a class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
</div>
<div id="sidebar">
<div id="navigation">
@@ -410,7 +410,7 @@ public class HelloParser extends Abstrac
</div>
<div id="footer">
<p>
- Copyright © 2016
+ Copyright © 2017
<a href="http://www.apache.org/">The Apache Software Foundation</a>.
Site powered by <a href="http://maven.apache.org/">Apache Maven</a>.
Search powered by
Modified: tika/site/publish/1.13/parser_guide.html
URL:
http://svn.apache.org/viewvc/tika/site/publish/1.13/parser_guide.html?rev=1794407&r1=1794406&r2=1794407&view=diff
==============================================================================
--- tika/site/publish/1.13/parser_guide.html (original)
+++ tika/site/publish/1.13/parser_guide.html Mon May 8 16:32:46 2017
@@ -99,7 +99,7 @@
<p>The <a href="./gettingstarted.html">Getting Started</a> document describes
how to build Apache Tika from sources and how to start using Tika in an
application. Pay close attention and follow the instructions in the
"Getting and building the sources" section.</p></div>
<div class="section">
<h3><a name="Add_your_MIME-Type">Add your MIME-Type</a></h3>
-<p>Tika loads the core, standard MIME-Types from the file
"org/apache/tika/mime/tika-mimetypes.xml", which comes from <a
class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
. If your new MIME-Type is a standard one which is missing from Tika, submit a
patch for this file!</p>
+<p>Tika loads the core, standard MIME-Types from the file
"org/apache/tika/mime/tika-mimetypes.xml", which comes from <a
class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
. If your new MIME-Type is a standard one which is missing from Tika, submit a
patch for this file!</p>
<p>If your MIME-Type needs adding, create a new file
"org/apache/tika/mime/custom-mimetypes.xml" in your codebase. You
should add to it something like this:</p>
<div>
<pre> <?xml version="1.0" encoding="UTF-8"?>
@@ -174,7 +174,7 @@ public class HelloParser extends Abstrac
<div class="section">
<h3><a name="List_the_new_parser">List the new parser</a></h3>
<p>Finally, you should explicitly tell the AutoDetectParser to include your
new parser. This step is only needed if you want to use the AutoDetectParser
functionality. If you figure out the correct parser in a different way, it
isn't needed. </p>
-<p>List your new parser in: <a class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
+<p>List your new parser in: <a class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
</div>
<div id="sidebar">
<div id="navigation">
@@ -410,7 +410,7 @@ public class HelloParser extends Abstrac
</div>
<div id="footer">
<p>
- Copyright © 2016
+ Copyright © 2017
<a href="http://www.apache.org/">The Apache Software Foundation</a>.
Site powered by <a href="http://maven.apache.org/">Apache Maven</a>.
Search powered by
Modified: tika/site/publish/1.14/parser_guide.html
URL:
http://svn.apache.org/viewvc/tika/site/publish/1.14/parser_guide.html?rev=1794407&r1=1794406&r2=1794407&view=diff
==============================================================================
--- tika/site/publish/1.14/parser_guide.html (original)
+++ tika/site/publish/1.14/parser_guide.html Mon May 8 16:32:46 2017
@@ -99,7 +99,7 @@
<p>The <a href="./gettingstarted.html">Getting Started</a> document describes
how to build Apache Tika from sources and how to start using Tika in an
application. Pay close attention and follow the instructions in the
"Getting and building the sources" section.</p></div>
<div class="section">
<h3><a name="Add_your_MIME-Type">Add your MIME-Type</a></h3>
-<p>Tika loads the core, standard MIME-Types from the file
"org/apache/tika/mime/tika-mimetypes.xml", which comes from <a
class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
. If your new MIME-Type is a standard one which is missing from Tika, submit a
patch for this file!</p>
+<p>Tika loads the core, standard MIME-Types from the file
"org/apache/tika/mime/tika-mimetypes.xml", which comes from <a
class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
. If your new MIME-Type is a standard one which is missing from Tika, submit a
patch for this file!</p>
<p>If your MIME-Type needs adding, create a new file
"org/apache/tika/mime/custom-mimetypes.xml" in your codebase. You
should add to it something like this:</p>
<div>
<pre> <?xml version="1.0" encoding="UTF-8"?>
@@ -174,7 +174,7 @@ public class HelloParser extends Abstrac
<div class="section">
<h3><a name="List_the_new_parser">List the new parser</a></h3>
<p>Finally, you should explicitly tell the AutoDetectParser to include your
new parser. This step is only needed if you want to use the AutoDetectParser
functionality. If you figure out the correct parser in a different way, it
isn't needed. </p>
-<p>List your new parser in: <a class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
+<p>List your new parser in: <a class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
</div>
<div id="sidebar">
<div id="navigation">
@@ -372,7 +372,7 @@ public class HelloParser extends Abstrac
</div>
<div id="footer">
<p>
- Copyright © 2016
+ Copyright © 2017
<a href="http://www.apache.org/">The Apache Software Foundation</a>.
Site powered by <a href="http://maven.apache.org/">Apache Maven</a>.
Search powered by
Modified: tika/site/publish/1.2/parser_guide.html
URL:
http://svn.apache.org/viewvc/tika/site/publish/1.2/parser_guide.html?rev=1794407&r1=1794406&r2=1794407&view=diff
==============================================================================
--- tika/site/publish/1.2/parser_guide.html (original)
+++ tika/site/publish/1.2/parser_guide.html Mon May 8 16:32:46 2017
@@ -99,7 +99,7 @@
<p>The <a href="./gettingstarted.html">Getting Started</a> document describes
how to build Apache Tika from sources and how to start using Tika in an
application. Pay close attention and follow the instructions in the
"Getting and building the sources" section.</p></div>
<div class="section">
<h3><a name="Add_your_MIME-Type">Add your MIME-Type</a></h3>
-<p>You first need to modify <a class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
in order to Tika can map the file extension with its MIME-Type. You should add
something like this:</p>
+<p>You first need to modify <a class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
in order to Tika can map the file extension with its MIME-Type. You should add
something like this:</p>
<div>
<pre> <mime-type type="application/hello">
<glob pattern="*.hi"/>
@@ -178,7 +178,7 @@ public class HelloParser implements Pars
<div class="section">
<h3><a name="List_the_new_parser">List the new parser</a></h3>
<p>Finally, you should explicitly tell the AutoDetectParser to include your
new parser. This step is only needed if you want to use the AutoDetectParser
functionality. If you figure out the correct parser in a different way, it
isn't needed. </p>
-<p>List your new parser in: <a class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
+<p>List your new parser in: <a class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
</div>
<div id="sidebar">
<div id="navigation">
@@ -376,7 +376,7 @@ public class HelloParser implements Pars
</div>
<div id="footer">
<p>
- Copyright © 2016
+ Copyright © 2017
<a href="http://www.apache.org/">The Apache Software Foundation</a>.
Site powered by <a href="http://maven.apache.org/">Apache Maven</a>.
Search powered by
Modified: tika/site/publish/1.3/parser_guide.html
URL:
http://svn.apache.org/viewvc/tika/site/publish/1.3/parser_guide.html?rev=1794407&r1=1794406&r2=1794407&view=diff
==============================================================================
--- tika/site/publish/1.3/parser_guide.html (original)
+++ tika/site/publish/1.3/parser_guide.html Mon May 8 16:32:46 2017
@@ -99,7 +99,7 @@
<p>The <a href="./gettingstarted.html">Getting Started</a> document describes
how to build Apache Tika from sources and how to start using Tika in an
application. Pay close attention and follow the instructions in the
"Getting and building the sources" section.</p></div>
<div class="section">
<h3><a name="Add_your_MIME-Type">Add your MIME-Type</a></h3>
-<p>You first need to modify <a class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
in order to Tika can map the file extension with its MIME-Type. You should add
something like this:</p>
+<p>You first need to modify <a class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
in order to Tika can map the file extension with its MIME-Type. You should add
something like this:</p>
<div>
<pre> <mime-type type="application/hello">
<glob pattern="*.hi"/>
@@ -178,7 +178,7 @@ public class HelloParser implements Pars
<div class="section">
<h3><a name="List_the_new_parser">List the new parser</a></h3>
<p>Finally, you should explicitly tell the AutoDetectParser to include your
new parser. This step is only needed if you want to use the AutoDetectParser
functionality. If you figure out the correct parser in a different way, it
isn't needed. </p>
-<p>List your new parser in: <a class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
+<p>List your new parser in: <a class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
</div>
<div id="sidebar">
<div id="navigation">
@@ -376,7 +376,7 @@ public class HelloParser implements Pars
</div>
<div id="footer">
<p>
- Copyright © 2016
+ Copyright © 2017
<a href="http://www.apache.org/">The Apache Software Foundation</a>.
Site powered by <a href="http://maven.apache.org/">Apache Maven</a>.
Search powered by
Modified: tika/site/publish/1.4/parser_guide.html
URL:
http://svn.apache.org/viewvc/tika/site/publish/1.4/parser_guide.html?rev=1794407&r1=1794406&r2=1794407&view=diff
==============================================================================
--- tika/site/publish/1.4/parser_guide.html (original)
+++ tika/site/publish/1.4/parser_guide.html Mon May 8 16:32:46 2017
@@ -99,7 +99,7 @@
<p>The <a href="./gettingstarted.html">Getting Started</a> document describes
how to build Apache Tika from sources and how to start using Tika in an
application. Pay close attention and follow the instructions in the
"Getting and building the sources" section.</p></div>
<div class="section">
<h3><a name="Add_your_MIME-Type">Add your MIME-Type</a></h3>
-<p>Tika loads the core, standard MIME-Types from the file
"org/apache/tika/mime/tika-mimetypes.xml", which comes from <a
class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
. If your new MIME-Type is a standard one which is missing from Tika, submit a
patch for this file!</p>
+<p>Tika loads the core, standard MIME-Types from the file
"org/apache/tika/mime/tika-mimetypes.xml", which comes from <a
class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
. If your new MIME-Type is a standard one which is missing from Tika, submit a
patch for this file!</p>
<p>If your MIME-Type needs adding, create a new file
"org/apache/tika/mime/custom-mimetypes.xml" in your codebase. You
should add to it something like this:</p>
<div>
<pre> <?xml version="1.0" encoding="UTF-8"?>
@@ -174,7 +174,7 @@ public class HelloParser extends Abstrac
<div class="section">
<h3><a name="List_the_new_parser">List the new parser</a></h3>
<p>Finally, you should explicitly tell the AutoDetectParser to include your
new parser. This step is only needed if you want to use the AutoDetectParser
functionality. If you figure out the correct parser in a different way, it
isn't needed. </p>
-<p>List your new parser in: <a class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
+<p>List your new parser in: <a class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
</div>
<div id="sidebar">
<div id="navigation">
@@ -372,7 +372,7 @@ public class HelloParser extends Abstrac
</div>
<div id="footer">
<p>
- Copyright © 2016
+ Copyright © 2017
<a href="http://www.apache.org/">The Apache Software Foundation</a>.
Site powered by <a href="http://maven.apache.org/">Apache Maven</a>.
Search powered by
Modified: tika/site/publish/1.5/parser_guide.html
URL:
http://svn.apache.org/viewvc/tika/site/publish/1.5/parser_guide.html?rev=1794407&r1=1794406&r2=1794407&view=diff
==============================================================================
--- tika/site/publish/1.5/parser_guide.html (original)
+++ tika/site/publish/1.5/parser_guide.html Mon May 8 16:32:46 2017
@@ -99,7 +99,7 @@
<p>The <a href="./gettingstarted.html">Getting Started</a> document describes
how to build Apache Tika from sources and how to start using Tika in an
application. Pay close attention and follow the instructions in the
"Getting and building the sources" section.</p></div>
<div class="section">
<h3><a name="Add_your_MIME-Type">Add your MIME-Type</a></h3>
-<p>Tika loads the core, standard MIME-Types from the file
"org/apache/tika/mime/tika-mimetypes.xml", which comes from <a
class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
. If your new MIME-Type is a standard one which is missing from Tika, submit a
patch for this file!</p>
+<p>Tika loads the core, standard MIME-Types from the file
"org/apache/tika/mime/tika-mimetypes.xml", which comes from <a
class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
. If your new MIME-Type is a standard one which is missing from Tika, submit a
patch for this file!</p>
<p>If your MIME-Type needs adding, create a new file
"org/apache/tika/mime/custom-mimetypes.xml" in your codebase. You
should add to it something like this:</p>
<div>
<pre> <?xml version="1.0" encoding="UTF-8"?>
@@ -174,7 +174,7 @@ public class HelloParser extends Abstrac
<div class="section">
<h3><a name="List_the_new_parser">List the new parser</a></h3>
<p>Finally, you should explicitly tell the AutoDetectParser to include your
new parser. This step is only needed if you want to use the AutoDetectParser
functionality. If you figure out the correct parser in a different way, it
isn't needed. </p>
-<p>List your new parser in: <a class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
+<p>List your new parser in: <a class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
</div>
<div id="sidebar">
<div id="navigation">
@@ -372,7 +372,7 @@ public class HelloParser extends Abstrac
</div>
<div id="footer">
<p>
- Copyright © 2016
+ Copyright © 2017
<a href="http://www.apache.org/">The Apache Software Foundation</a>.
Site powered by <a href="http://maven.apache.org/">Apache Maven</a>.
Search powered by
Modified: tika/site/publish/1.6/parser_guide.html
URL:
http://svn.apache.org/viewvc/tika/site/publish/1.6/parser_guide.html?rev=1794407&r1=1794406&r2=1794407&view=diff
==============================================================================
--- tika/site/publish/1.6/parser_guide.html (original)
+++ tika/site/publish/1.6/parser_guide.html Mon May 8 16:32:46 2017
@@ -99,7 +99,7 @@
<p>The <a href="./gettingstarted.html">Getting Started</a> document describes
how to build Apache Tika from sources and how to start using Tika in an
application. Pay close attention and follow the instructions in the
"Getting and building the sources" section.</p></div>
<div class="section">
<h3><a name="Add_your_MIME-Type">Add your MIME-Type</a></h3>
-<p>Tika loads the core, standard MIME-Types from the file
"org/apache/tika/mime/tika-mimetypes.xml", which comes from <a
class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
. If your new MIME-Type is a standard one which is missing from Tika, submit a
patch for this file!</p>
+<p>Tika loads the core, standard MIME-Types from the file
"org/apache/tika/mime/tika-mimetypes.xml", which comes from <a
class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
. If your new MIME-Type is a standard one which is missing from Tika, submit a
patch for this file!</p>
<p>If your MIME-Type needs adding, create a new file
"org/apache/tika/mime/custom-mimetypes.xml" in your codebase. You
should add to it something like this:</p>
<div>
<pre> <?xml version="1.0" encoding="UTF-8"?>
@@ -174,7 +174,7 @@ public class HelloParser extends Abstrac
<div class="section">
<h3><a name="List_the_new_parser">List the new parser</a></h3>
<p>Finally, you should explicitly tell the AutoDetectParser to include your
new parser. This step is only needed if you want to use the AutoDetectParser
functionality. If you figure out the correct parser in a different way, it
isn't needed. </p>
-<p>List your new parser in: <a class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
+<p>List your new parser in: <a class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
</div>
<div id="sidebar">
<div id="navigation">
@@ -372,7 +372,7 @@ public class HelloParser extends Abstrac
</div>
<div id="footer">
<p>
- Copyright © 2016
+ Copyright © 2017
<a href="http://www.apache.org/">The Apache Software Foundation</a>.
Site powered by <a href="http://maven.apache.org/">Apache Maven</a>.
Search powered by
Modified: tika/site/publish/1.7/parser_guide.html
URL:
http://svn.apache.org/viewvc/tika/site/publish/1.7/parser_guide.html?rev=1794407&r1=1794406&r2=1794407&view=diff
==============================================================================
--- tika/site/publish/1.7/parser_guide.html (original)
+++ tika/site/publish/1.7/parser_guide.html Mon May 8 16:32:46 2017
@@ -99,7 +99,7 @@
<p>The <a href="./gettingstarted.html">Getting Started</a> document describes
how to build Apache Tika from sources and how to start using Tika in an
application. Pay close attention and follow the instructions in the
"Getting and building the sources" section.</p></div>
<div class="section">
<h3><a name="Add_your_MIME-Type">Add your MIME-Type</a></h3>
-<p>Tika loads the core, standard MIME-Types from the file
"org/apache/tika/mime/tika-mimetypes.xml", which comes from <a
class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
. If your new MIME-Type is a standard one which is missing from Tika, submit a
patch for this file!</p>
+<p>Tika loads the core, standard MIME-Types from the file
"org/apache/tika/mime/tika-mimetypes.xml", which comes from <a
class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
. If your new MIME-Type is a standard one which is missing from Tika, submit a
patch for this file!</p>
<p>If your MIME-Type needs adding, create a new file
"org/apache/tika/mime/custom-mimetypes.xml" in your codebase. You
should add to it something like this:</p>
<div>
<pre> <?xml version="1.0" encoding="UTF-8"?>
@@ -174,7 +174,7 @@ public class HelloParser extends Abstrac
<div class="section">
<h3><a name="List_the_new_parser">List the new parser</a></h3>
<p>Finally, you should explicitly tell the AutoDetectParser to include your
new parser. This step is only needed if you want to use the AutoDetectParser
functionality. If you figure out the correct parser in a different way, it
isn't needed. </p>
-<p>List your new parser in: <a class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
+<p>List your new parser in: <a class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
</div>
<div id="sidebar">
<div id="navigation">
@@ -372,7 +372,7 @@ public class HelloParser extends Abstrac
</div>
<div id="footer">
<p>
- Copyright © 2016
+ Copyright © 2017
<a href="http://www.apache.org/">The Apache Software Foundation</a>.
Site powered by <a href="http://maven.apache.org/">Apache Maven</a>.
Search powered by
Modified: tika/site/publish/1.8/parser_guide.html
URL:
http://svn.apache.org/viewvc/tika/site/publish/1.8/parser_guide.html?rev=1794407&r1=1794406&r2=1794407&view=diff
==============================================================================
--- tika/site/publish/1.8/parser_guide.html (original)
+++ tika/site/publish/1.8/parser_guide.html Mon May 8 16:32:46 2017
@@ -99,7 +99,7 @@
<p>The <a href="./gettingstarted.html">Getting Started</a> document describes
how to build Apache Tika from sources and how to start using Tika in an
application. Pay close attention and follow the instructions in the
"Getting and building the sources" section.</p></div>
<div class="section">
<h3><a name="Add_your_MIME-Type">Add your MIME-Type</a></h3>
-<p>Tika loads the core, standard MIME-Types from the file
"org/apache/tika/mime/tika-mimetypes.xml", which comes from <a
class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
. If your new MIME-Type is a standard one which is missing from Tika, submit a
patch for this file!</p>
+<p>Tika loads the core, standard MIME-Types from the file
"org/apache/tika/mime/tika-mimetypes.xml", which comes from <a
class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
. If your new MIME-Type is a standard one which is missing from Tika, submit a
patch for this file!</p>
<p>If your MIME-Type needs adding, create a new file
"org/apache/tika/mime/custom-mimetypes.xml" in your codebase. You
should add to it something like this:</p>
<div>
<pre> <?xml version="1.0" encoding="UTF-8"?>
@@ -174,7 +174,7 @@ public class HelloParser extends Abstrac
<div class="section">
<h3><a name="List_the_new_parser">List the new parser</a></h3>
<p>Finally, you should explicitly tell the AutoDetectParser to include your
new parser. This step is only needed if you want to use the AutoDetectParser
functionality. If you figure out the correct parser in a different way, it
isn't needed. </p>
-<p>List your new parser in: <a class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
+<p>List your new parser in: <a class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
</div>
<div id="sidebar">
<div id="navigation">
@@ -372,7 +372,7 @@ public class HelloParser extends Abstrac
</div>
<div id="footer">
<p>
- Copyright © 2016
+ Copyright © 2017
<a href="http://www.apache.org/">The Apache Software Foundation</a>.
Site powered by <a href="http://maven.apache.org/">Apache Maven</a>.
Search powered by
Modified: tika/site/publish/1.9/parser_guide.html
URL:
http://svn.apache.org/viewvc/tika/site/publish/1.9/parser_guide.html?rev=1794407&r1=1794406&r2=1794407&view=diff
==============================================================================
--- tika/site/publish/1.9/parser_guide.html (original)
+++ tika/site/publish/1.9/parser_guide.html Mon May 8 16:32:46 2017
@@ -99,7 +99,7 @@
<p>The <a href="./gettingstarted.html">Getting Started</a> document describes
how to build Apache Tika from sources and how to start using Tika in an
application. Pay close attention and follow the instructions in the
"Getting and building the sources" section.</p></div>
<div class="section">
<h3><a name="Add_your_MIME-Type">Add your MIME-Type</a></h3>
-<p>Tika loads the core, standard MIME-Types from the file
"org/apache/tika/mime/tika-mimetypes.xml", which comes from <a
class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
. If your new MIME-Type is a standard one which is missing from Tika, submit a
patch for this file!</p>
+<p>Tika loads the core, standard MIME-Types from the file
"org/apache/tika/mime/tika-mimetypes.xml", which comes from <a
class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master">tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml</a>
. If your new MIME-Type is a standard one which is missing from Tika, submit a
patch for this file!</p>
<p>If your MIME-Type needs adding, create a new file
"org/apache/tika/mime/custom-mimetypes.xml" in your codebase. You
should add to it something like this:</p>
<div>
<pre> <?xml version="1.0" encoding="UTF-8"?>
@@ -174,7 +174,7 @@ public class HelloParser extends Abstrac
<div class="section">
<h3><a name="List_the_new_parser">List the new parser</a></h3>
<p>Finally, you should explicitly tell the AutoDetectParser to include your
new parser. This step is only needed if you want to use the AutoDetectParser
functionality. If you figure out the correct parser in a different way, it
isn't needed. </p>
-<p>List your new parser in: <a class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
+<p>List your new parser in: <a class="externalLink"
href="https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master">tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser</a></p></div></div>
</div>
<div id="sidebar">
<div id="navigation">
@@ -372,7 +372,7 @@ public class HelloParser extends Abstrac
</div>
<div id="footer">
<p>
- Copyright © 2016
+ Copyright © 2017
<a href="http://www.apache.org/">The Apache Software Foundation</a>.
Site powered by <a href="http://maven.apache.org/">Apache Maven</a>.
Search powered by
Modified: tika/site/src/site/apt/0.10/parser_guide.apt
URL:
http://svn.apache.org/viewvc/tika/site/src/site/apt/0.10/parser_guide.apt?rev=1794407&r1=1794406&r2=1794407&view=diff
==============================================================================
--- tika/site/src/site/apt/0.10/parser_guide.apt (original)
+++ tika/site/src/site/apt/0.10/parser_guide.apt Mon May 8 16:32:46 2017
@@ -33,7 +33,7 @@ Get Tika parsing up and running in 5 min
* {Add your MIME-Type}
- You first need to modify
{{{https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master}tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml}}
+ You first need to modify
{{{https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master}tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml}}
in order to Tika can map the file extension with its MIME-Type. You should
add something like this:
---
@@ -128,6 +128,6 @@ public class HelloParser implements Pars
If you figure out the correct parser in a different way, it isn't needed.
List your new parser in:
-
{{{https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master}tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser}}
+
{{{https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master}tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser}}
Modified: tika/site/src/site/apt/0.7/parser_guide.apt
URL:
http://svn.apache.org/viewvc/tika/site/src/site/apt/0.7/parser_guide.apt?rev=1794407&r1=1794406&r2=1794407&view=diff
==============================================================================
--- tika/site/src/site/apt/0.7/parser_guide.apt (original)
+++ tika/site/src/site/apt/0.7/parser_guide.apt Mon May 8 16:32:46 2017
@@ -33,7 +33,7 @@ Get Tika parsing up and running in 5 min
* {Add your MIME-Type}
- You first need to modify
{{{https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master}tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml}}
+ You first need to modify
{{{https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master}tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml}}
in order to Tika can map the file extension with its MIME-Type. You should
add something like this:
---
@@ -128,6 +128,6 @@ public class HelloParser implements Pars
If you figure out the correct parser in a different way, it isn't needed.
List your new parser in:
-
{{{https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master}tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser}}
+
{{{https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master}tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser}}
Modified: tika/site/src/site/apt/0.8/parser_guide.apt
URL:
http://svn.apache.org/viewvc/tika/site/src/site/apt/0.8/parser_guide.apt?rev=1794407&r1=1794406&r2=1794407&view=diff
==============================================================================
--- tika/site/src/site/apt/0.8/parser_guide.apt (original)
+++ tika/site/src/site/apt/0.8/parser_guide.apt Mon May 8 16:32:46 2017
@@ -33,7 +33,7 @@ Get Tika parsing up and running in 5 min
* {Add your MIME-Type}
- You first need to modify
{{{https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master}tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml}}
+ You first need to modify
{{{https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master}tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml}}
in order to Tika can map the file extension with its MIME-Type. You should
add something like this:
---
@@ -128,6 +128,6 @@ public class HelloParser implements Pars
If you figure out the correct parser in a different way, it isn't needed.
List your new parser in:
-
{{{https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master}tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser}}
+
{{{https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master}tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser}}
Modified: tika/site/src/site/apt/0.9/parser_guide.apt
URL:
http://svn.apache.org/viewvc/tika/site/src/site/apt/0.9/parser_guide.apt?rev=1794407&r1=1794406&r2=1794407&view=diff
==============================================================================
--- tika/site/src/site/apt/0.9/parser_guide.apt (original)
+++ tika/site/src/site/apt/0.9/parser_guide.apt Mon May 8 16:32:46 2017
@@ -33,7 +33,7 @@ Get Tika parsing up and running in 5 min
* {Add your MIME-Type}
- You first need to modify
{{{https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master}tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml}}
+ You first need to modify
{{{https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master}tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml}}
in order to Tika can map the file extension with its MIME-Type. You should
add something like this:
---
@@ -128,6 +128,6 @@ public class HelloParser implements Pars
If you figure out the correct parser in a different way, it isn't needed.
List your new parser in:
-
{{{https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master}tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser}}
+
{{{https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master}tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser}}
Modified: tika/site/src/site/apt/1.0/parser_guide.apt
URL:
http://svn.apache.org/viewvc/tika/site/src/site/apt/1.0/parser_guide.apt?rev=1794407&r1=1794406&r2=1794407&view=diff
==============================================================================
--- tika/site/src/site/apt/1.0/parser_guide.apt (original)
+++ tika/site/src/site/apt/1.0/parser_guide.apt Mon May 8 16:32:46 2017
@@ -35,7 +35,7 @@ Get Tika parsing up and running in 5 min
Tika loads the core, standard MIME-Types from the file
"org/apache/tika/mime/tika-mimetypes.xml", which comes from
-
{{{https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master}tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml}}
.
+
{{{https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master}tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml}}
.
If your new MIME-Type is a standard one which is missing from Tika,
submit a patch for this file!
@@ -136,6 +136,6 @@ public class HelloParser extends Abstrac
If you figure out the correct parser in a different way, it isn't needed.
List your new parser in:
-
{{{https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master}tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser}}
+
{{{https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master}tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser}}
Modified: tika/site/src/site/apt/1.1/parser_guide.apt
URL:
http://svn.apache.org/viewvc/tika/site/src/site/apt/1.1/parser_guide.apt?rev=1794407&r1=1794406&r2=1794407&view=diff
==============================================================================
--- tika/site/src/site/apt/1.1/parser_guide.apt (original)
+++ tika/site/src/site/apt/1.1/parser_guide.apt Mon May 8 16:32:46 2017
@@ -33,7 +33,7 @@ Get Tika parsing up and running in 5 min
* {Add your MIME-Type}
- You first need to modify
{{{https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master}tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml}}
+ You first need to modify
{{{https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master}tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml}}
in order to Tika can map the file extension with its MIME-Type. You should
add something like this:
---
@@ -128,6 +128,6 @@ public class HelloParser implements Pars
If you figure out the correct parser in a different way, it isn't needed.
List your new parser in:
-
{{{https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master}tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser}}
+
{{{https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master}tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser}}
Modified: tika/site/src/site/apt/1.10/parser_guide.apt
URL:
http://svn.apache.org/viewvc/tika/site/src/site/apt/1.10/parser_guide.apt?rev=1794407&r1=1794406&r2=1794407&view=diff
==============================================================================
--- tika/site/src/site/apt/1.10/parser_guide.apt (original)
+++ tika/site/src/site/apt/1.10/parser_guide.apt Mon May 8 16:32:46 2017
@@ -35,7 +35,7 @@ Get Tika parsing up and running in 5 min
Tika loads the core, standard MIME-Types from the file
"org/apache/tika/mime/tika-mimetypes.xml", which comes from
-
{{{https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master}tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml}}
.
+
{{{https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master}tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml}}
.
If your new MIME-Type is a standard one which is missing from Tika,
submit a patch for this file!
@@ -136,6 +136,6 @@ public class HelloParser extends Abstrac
If you figure out the correct parser in a different way, it isn't needed.
List your new parser in:
-
{{{https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master}tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser}}
+
{{{https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master}tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser}}
Modified: tika/site/src/site/apt/1.11/parser_guide.apt
URL:
http://svn.apache.org/viewvc/tika/site/src/site/apt/1.11/parser_guide.apt?rev=1794407&r1=1794406&r2=1794407&view=diff
==============================================================================
--- tika/site/src/site/apt/1.11/parser_guide.apt (original)
+++ tika/site/src/site/apt/1.11/parser_guide.apt Mon May 8 16:32:46 2017
@@ -35,7 +35,7 @@ Get Tika parsing up and running in 5 min
Tika loads the core, standard MIME-Types from the file
"org/apache/tika/mime/tika-mimetypes.xml", which comes from
-
{{{https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master}tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml}}
.
+
{{{https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master}tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml}}
.
If your new MIME-Type is a standard one which is missing from Tika,
submit a patch for this file!
@@ -136,6 +136,6 @@ public class HelloParser extends Abstrac
If you figure out the correct parser in a different way, it isn't needed.
List your new parser in:
-
{{{https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master}tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser}}
+
{{{https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master}tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser}}
Modified: tika/site/src/site/apt/1.12/parser_guide.apt
URL:
http://svn.apache.org/viewvc/tika/site/src/site/apt/1.12/parser_guide.apt?rev=1794407&r1=1794406&r2=1794407&view=diff
==============================================================================
--- tika/site/src/site/apt/1.12/parser_guide.apt (original)
+++ tika/site/src/site/apt/1.12/parser_guide.apt Mon May 8 16:32:46 2017
@@ -35,7 +35,7 @@ Get Tika parsing up and running in 5 min
Tika loads the core, standard MIME-Types from the file
"org/apache/tika/mime/tika-mimetypes.xml", which comes from
-
{{{https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master}tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml}}
.
+
{{{https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master}tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml}}
.
If your new MIME-Type is a standard one which is missing from Tika,
submit a patch for this file!
@@ -136,6 +136,6 @@ public class HelloParser extends Abstrac
If you figure out the correct parser in a different way, it isn't needed.
List your new parser in:
-
{{{https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master}tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser}}
+
{{{https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master}tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser}}
Modified: tika/site/src/site/apt/1.13/parser_guide.apt
URL:
http://svn.apache.org/viewvc/tika/site/src/site/apt/1.13/parser_guide.apt?rev=1794407&r1=1794406&r2=1794407&view=diff
==============================================================================
--- tika/site/src/site/apt/1.13/parser_guide.apt (original)
+++ tika/site/src/site/apt/1.13/parser_guide.apt Mon May 8 16:32:46 2017
@@ -35,7 +35,7 @@ Get Tika parsing up and running in 5 min
Tika loads the core, standard MIME-Types from the file
"org/apache/tika/mime/tika-mimetypes.xml", which comes from
-
{{{https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master}tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml}}
.
+
{{{https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master}tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml}}
.
If your new MIME-Type is a standard one which is missing from Tika,
submit a patch for this file!
@@ -136,6 +136,6 @@ public class HelloParser extends Abstrac
If you figure out the correct parser in a different way, it isn't needed.
List your new parser in:
-
{{{https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master}tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser}}
+
{{{https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master}tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser}}
Modified: tika/site/src/site/apt/1.14/parser_guide.apt
URL:
http://svn.apache.org/viewvc/tika/site/src/site/apt/1.14/parser_guide.apt?rev=1794407&r1=1794406&r2=1794407&view=diff
==============================================================================
--- tika/site/src/site/apt/1.14/parser_guide.apt (original)
+++ tika/site/src/site/apt/1.14/parser_guide.apt Mon May 8 16:32:46 2017
@@ -35,7 +35,7 @@ Get Tika parsing up and running in 5 min
Tika loads the core, standard MIME-Types from the file
"org/apache/tika/mime/tika-mimetypes.xml", which comes from
-
{{{https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master}tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml}}
.
+
{{{https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master}tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml}}
.
If your new MIME-Type is a standard one which is missing from Tika,
submit a patch for this file!
@@ -136,6 +136,6 @@ public class HelloParser extends Abstrac
If you figure out the correct parser in a different way, it isn't needed.
List your new parser in:
-
{{{https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master}tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser}}
+
{{{https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master}tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser}}
Modified: tika/site/src/site/apt/1.2/parser_guide.apt
URL:
http://svn.apache.org/viewvc/tika/site/src/site/apt/1.2/parser_guide.apt?rev=1794407&r1=1794406&r2=1794407&view=diff
==============================================================================
--- tika/site/src/site/apt/1.2/parser_guide.apt (original)
+++ tika/site/src/site/apt/1.2/parser_guide.apt Mon May 8 16:32:46 2017
@@ -33,7 +33,7 @@ Get Tika parsing up and running in 5 min
* {Add your MIME-Type}
- You first need to modify
{{{https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master}tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml}}
+ You first need to modify
{{{https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master}tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml}}
in order to Tika can map the file extension with its MIME-Type. You should
add something like this:
---
@@ -128,6 +128,6 @@ public class HelloParser implements Pars
If you figure out the correct parser in a different way, it isn't needed.
List your new parser in:
-
{{{https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master}tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser}}
+
{{{https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master}tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser}}
Modified: tika/site/src/site/apt/1.3/parser_guide.apt
URL:
http://svn.apache.org/viewvc/tika/site/src/site/apt/1.3/parser_guide.apt?rev=1794407&r1=1794406&r2=1794407&view=diff
==============================================================================
--- tika/site/src/site/apt/1.3/parser_guide.apt (original)
+++ tika/site/src/site/apt/1.3/parser_guide.apt Mon May 8 16:32:46 2017
@@ -33,7 +33,7 @@ Get Tika parsing up and running in 5 min
* {Add your MIME-Type}
- You first need to modify
{{{https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master}tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml}}
+ You first need to modify
{{{https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml;hb=refs/heads/master}tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml}}
in order to Tika can map the file extension with its MIME-Type. You should
add something like this:
---
@@ -128,6 +128,6 @@ public class HelloParser implements Pars
If you figure out the correct parser in a different way, it isn't needed.
List your new parser in:
-
{{{https://git-wip-us.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master}tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser}}
+
{{{https://gitbox.apache.org/repos/asf?p=tika.git;a=blob;f=tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser;hb=refs/heads/master}tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser}}