Author: nick
Date: Fri Jan 22 09:45:05 2016
New Revision: 1726166
URL: http://svn.apache.org/viewvc?rev=1726166&view=rev
Log:
Republish the site for Git updates
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.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/publish/contribute.html
Modified: tika/site/publish/0.10/parser_guide.html
URL:
http://svn.apache.org/viewvc/tika/site/publish/0.10/parser_guide.html?rev=1726166&r1=1726165&r2=1726166&view=diff
==============================================================================
--- tika/site/publish/0.10/parser_guide.html (original)
+++ tika/site/publish/0.10/parser_guide.html Fri Jan 22 09:45:05 2016
@@ -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="http://svn.apache.org/repos/asf/tika/trunk/tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml">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://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>
<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="http://svn.apache.org/repos/asf/tika/trunk/tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser">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://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>
</div>
<div id="sidebar">
<div id="navigation">
@@ -352,7 +352,7 @@ public class HelloParser implements Pars
</div>
<div id="footer">
<p>
- Copyright © 2015
+ Copyright © 2016
<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=1726166&r1=1726165&r2=1726166&view=diff
==============================================================================
--- tika/site/publish/0.7/parser_guide.html (original)
+++ tika/site/publish/0.7/parser_guide.html Fri Jan 22 09:45:05 2016
@@ -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="http://svn.apache.org/repos/asf/tika/trunk/tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml">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://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>
<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="http://svn.apache.org/repos/asf/tika/trunk/tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser">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://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>
</div>
<div id="sidebar">
<div id="navigation">
@@ -352,7 +352,7 @@ public class HelloParser implements Pars
</div>
<div id="footer">
<p>
- Copyright © 2015
+ Copyright © 2016
<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=1726166&r1=1726165&r2=1726166&view=diff
==============================================================================
--- tika/site/publish/0.8/parser_guide.html (original)
+++ tika/site/publish/0.8/parser_guide.html Fri Jan 22 09:45:05 2016
@@ -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="http://svn.apache.org/repos/asf/tika/trunk/tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml">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://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>
<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="http://svn.apache.org/repos/asf/tika/trunk/tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser">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://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>
</div>
<div id="sidebar">
<div id="navigation">
@@ -352,7 +352,7 @@ public class HelloParser implements Pars
</div>
<div id="footer">
<p>
- Copyright © 2015
+ Copyright © 2016
<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=1726166&r1=1726165&r2=1726166&view=diff
==============================================================================
--- tika/site/publish/0.9/parser_guide.html (original)
+++ tika/site/publish/0.9/parser_guide.html Fri Jan 22 09:45:05 2016
@@ -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="http://svn.apache.org/repos/asf/tika/trunk/tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml">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://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>
<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="http://svn.apache.org/repos/asf/tika/trunk/tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser">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://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>
</div>
<div id="sidebar">
<div id="navigation">
@@ -352,7 +352,7 @@ public class HelloParser implements Pars
</div>
<div id="footer">
<p>
- Copyright © 2015
+ Copyright © 2016
<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=1726166&r1=1726165&r2=1726166&view=diff
==============================================================================
--- tika/site/publish/1.0/parser_guide.html (original)
+++ tika/site/publish/1.0/parser_guide.html Fri Jan 22 09:45:05 2016
@@ -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="http://svn.apache.org/repos/asf/tika/trunk/tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml">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://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>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="http://svn.apache.org/repos/asf/tika/trunk/tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser">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://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>
</div>
<div id="sidebar">
<div id="navigation">
@@ -348,7 +348,7 @@ public class HelloParser extends Abstrac
</div>
<div id="footer">
<p>
- Copyright © 2015
+ Copyright © 2016
<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=1726166&r1=1726165&r2=1726166&view=diff
==============================================================================
--- tika/site/publish/1.1/parser_guide.html (original)
+++ tika/site/publish/1.1/parser_guide.html Fri Jan 22 09:45:05 2016
@@ -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="http://svn.apache.org/repos/asf/tika/trunk/tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml">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://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>
<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="http://svn.apache.org/repos/asf/tika/trunk/tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser">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://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>
</div>
<div id="sidebar">
<div id="navigation">
@@ -352,7 +352,7 @@ public class HelloParser implements Pars
</div>
<div id="footer">
<p>
- Copyright © 2015
+ Copyright © 2016
<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=1726166&r1=1726165&r2=1726166&view=diff
==============================================================================
--- tika/site/publish/1.10/parser_guide.html (original)
+++ tika/site/publish/1.10/parser_guide.html Fri Jan 22 09:45:05 2016
@@ -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="http://svn.apache.org/repos/asf/tika/trunk/tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml">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://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>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="http://svn.apache.org/repos/asf/tika/trunk/tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser">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://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>
</div>
<div id="sidebar">
<div id="navigation">
@@ -382,7 +382,7 @@ public class HelloParser extends Abstrac
</div>
<div id="footer">
<p>
- Copyright © 2015
+ Copyright © 2016
<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=1726166&r1=1726165&r2=1726166&view=diff
==============================================================================
--- tika/site/publish/1.11/parser_guide.html (original)
+++ tika/site/publish/1.11/parser_guide.html Fri Jan 22 09:45:05 2016
@@ -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="http://svn.apache.org/repos/asf/tika/trunk/tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml">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://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>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="http://svn.apache.org/repos/asf/tika/trunk/tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser">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://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>
</div>
<div id="sidebar">
<div id="navigation">
@@ -348,7 +348,7 @@ public class HelloParser extends Abstrac
</div>
<div id="footer">
<p>
- Copyright © 2015
+ Copyright © 2016
<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=1726166&r1=1726165&r2=1726166&view=diff
==============================================================================
--- tika/site/publish/1.2/parser_guide.html (original)
+++ tika/site/publish/1.2/parser_guide.html Fri Jan 22 09:45:05 2016
@@ -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="http://svn.apache.org/repos/asf/tika/trunk/tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml">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://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>
<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="http://svn.apache.org/repos/asf/tika/trunk/tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser">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://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>
</div>
<div id="sidebar">
<div id="navigation">
@@ -352,7 +352,7 @@ public class HelloParser implements Pars
</div>
<div id="footer">
<p>
- Copyright © 2015
+ Copyright © 2016
<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=1726166&r1=1726165&r2=1726166&view=diff
==============================================================================
--- tika/site/publish/1.3/parser_guide.html (original)
+++ tika/site/publish/1.3/parser_guide.html Fri Jan 22 09:45:05 2016
@@ -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="http://svn.apache.org/repos/asf/tika/trunk/tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml">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://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>
<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="http://svn.apache.org/repos/asf/tika/trunk/tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser">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://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>
</div>
<div id="sidebar">
<div id="navigation">
@@ -352,7 +352,7 @@ public class HelloParser implements Pars
</div>
<div id="footer">
<p>
- Copyright © 2015
+ Copyright © 2016
<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=1726166&r1=1726165&r2=1726166&view=diff
==============================================================================
--- tika/site/publish/1.4/parser_guide.html (original)
+++ tika/site/publish/1.4/parser_guide.html Fri Jan 22 09:45:05 2016
@@ -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="http://svn.apache.org/repos/asf/tika/trunk/tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml">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://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>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="http://svn.apache.org/repos/asf/tika/trunk/tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser">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://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>
</div>
<div id="sidebar">
<div id="navigation">
@@ -348,7 +348,7 @@ public class HelloParser extends Abstrac
</div>
<div id="footer">
<p>
- Copyright © 2015
+ Copyright © 2016
<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=1726166&r1=1726165&r2=1726166&view=diff
==============================================================================
--- tika/site/publish/1.5/parser_guide.html (original)
+++ tika/site/publish/1.5/parser_guide.html Fri Jan 22 09:45:05 2016
@@ -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="http://svn.apache.org/repos/asf/tika/trunk/tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml">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://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>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="http://svn.apache.org/repos/asf/tika/trunk/tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser">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://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>
</div>
<div id="sidebar">
<div id="navigation">
@@ -348,7 +348,7 @@ public class HelloParser extends Abstrac
</div>
<div id="footer">
<p>
- Copyright © 2015
+ Copyright © 2016
<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=1726166&r1=1726165&r2=1726166&view=diff
==============================================================================
--- tika/site/publish/1.6/parser_guide.html (original)
+++ tika/site/publish/1.6/parser_guide.html Fri Jan 22 09:45:05 2016
@@ -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="http://svn.apache.org/repos/asf/tika/trunk/tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml">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://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>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="http://svn.apache.org/repos/asf/tika/trunk/tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser">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://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>
</div>
<div id="sidebar">
<div id="navigation">
@@ -348,7 +348,7 @@ public class HelloParser extends Abstrac
</div>
<div id="footer">
<p>
- Copyright © 2015
+ Copyright © 2016
<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=1726166&r1=1726165&r2=1726166&view=diff
==============================================================================
--- tika/site/publish/1.7/parser_guide.html (original)
+++ tika/site/publish/1.7/parser_guide.html Fri Jan 22 09:45:05 2016
@@ -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="http://svn.apache.org/repos/asf/tika/trunk/tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml">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://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>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="http://svn.apache.org/repos/asf/tika/trunk/tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser">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://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>
</div>
<div id="sidebar">
<div id="navigation">
@@ -348,7 +348,7 @@ public class HelloParser extends Abstrac
</div>
<div id="footer">
<p>
- Copyright © 2015
+ Copyright © 2016
<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=1726166&r1=1726165&r2=1726166&view=diff
==============================================================================
--- tika/site/publish/1.8/parser_guide.html (original)
+++ tika/site/publish/1.8/parser_guide.html Fri Jan 22 09:45:05 2016
@@ -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="http://svn.apache.org/repos/asf/tika/trunk/tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml">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://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>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="http://svn.apache.org/repos/asf/tika/trunk/tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser">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://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>
</div>
<div id="sidebar">
<div id="navigation">
@@ -378,7 +378,7 @@ public class HelloParser extends Abstrac
</div>
<div id="footer">
<p>
- Copyright © 2015
+ Copyright © 2016
<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=1726166&r1=1726165&r2=1726166&view=diff
==============================================================================
--- tika/site/publish/1.9/parser_guide.html (original)
+++ tika/site/publish/1.9/parser_guide.html Fri Jan 22 09:45:05 2016
@@ -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="http://svn.apache.org/repos/asf/tika/trunk/tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml">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://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>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="http://svn.apache.org/repos/asf/tika/trunk/tika-parsers/src/main/resources/META-INF/services/org.apache.tika.parser.Parser">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://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>
</div>
<div id="sidebar">
<div id="navigation">
@@ -382,7 +382,7 @@ public class HelloParser extends Abstrac
</div>
<div id="footer">
<p>
- Copyright © 2015
+ Copyright © 2016
<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/contribute.html
URL:
http://svn.apache.org/viewvc/tika/site/publish/contribute.html?rev=1726166&r1=1726165&r2=1726166&view=diff
==============================================================================
--- tika/site/publish/contribute.html (original)
+++ tika/site/publish/contribute.html Fri Jan 22 09:45:05 2016
@@ -90,8 +90,8 @@
<div class="section">
<h2><a name="Source_Code"></a>Source Code</h2>
<p>To download the source code for the latest release of Apache Tika, please
see the <a href="./download.html">Download page</a>.</p>
-<p>The master copy of the Apache Tika source code is held in SVN. You can
checkout the code from <a class="externalLink"
href="https://svn.apache.org/repos/asf/tika/trunk">https://svn.apache.org/repos/asf/tika/trunk</a>
and you can browse it online through <a class="externalLink"
href="http://svn.apache.org/viewvc/tika/trunk/">Viewvc</a></p>
-<p>For those who prefer working with Git, a read only mirror is available from
<a class="externalLink" href="http://git.apache.org/">git.apache.org</a>. We
also maintain a <a class="externalLink"
href="https://github.com/apache/tika/">GitHub mirror</a>, which you are welcome
to fork from and open pull requests to.</p></div>
+<p>The master copy of the Apache Tika source code is held in GIT. You can
clone (checkout) the code from <a class="externalLink"
href="https://git-wip-us.apache.org/repos/asf/tika.git">https://git-wip-us.apache.org/repos/asf/tika.git</a>
and you can browse it online through <a class="externalLink"
href="https://git-wip-us.apache.org/repos/asf?p=tika.git">Git web
interface</a></p>
+<p>For those who prefer working on GitHub, we also maintain a <a
class="externalLink" href="https://github.com/apache/tika/">GitHub mirror</a>,
which you are welcome to fork from and open pull requests to.</p></div>
<div class="section">
<h2><a name="Reporting_Issues"></a>Reporting Issues</h2>
<p>Tika uses the <a class="externalLink"
href="https://issues.apache.org/jira/browse/TIKA">ASF JIRA instance</a>, for
issue tracking, under the <a class="externalLink"
href="https://issues.apache.org/jira/browse/TIKA">Tika Project</a>.</p>
@@ -104,8 +104,7 @@
<div class="section">
<h2><a name="Submitting_Enhancements_and_Fixes"></a>Submitting Enhancements
and Fixes</h2>
<p>All enhancements and fixes should have a <a class="externalLink"
href="https://issues.apache.org/jira/browse/TIKA">JIRA Issue or Enhancement</a>
opened for them. This should describe the problem and the proposed fix / new
code. The JIRA can be used for discussions on the code, and provides a single
identifier for the change.</p>
-<p>SVN - For users of SVN, you can use <tt>svn diff</tt> to generate a patch
file of your changes, which can then be attached to the issue. Note that a SVN
diff won't normally include new or binary files, so these will need to be
attached separately.</p>
-<p>Git - Git users can run <tt>git diff --no-prefix</tt> to generate an SVN
compatible patch which can then be attached to an issue.</p>
+<p>Git - Git users can run <tt>git diff --no-prefix</tt> to generate a patch
of changed and new files, including binaries, which can then be attached to an
issue.</p>
<p>Github Pulls - If you are working from our <a class="externalLink"
href="https://github.com/apache/tika/">GitHub mirror</a>, it is possible to
open a pull request for your change. Please include the JIRA Issue number in
the pull request, so it can be linked by the ASF GitHub bot. </p>
<p>ReviewBoard - If you have a Work-In-Progress patch for which you would like
feedback / review / assistance, you can use the <a class="externalLink"
href="https://reviews.apache.org/dashboard/">Apache ReviewBoard Instance</a> to
post your code. Please reference the JIRA Issue number from the review request,
and add a link to it to the JIRA Issue.</p>
<p>Unit tests, License Headers - Wherever possible, we like new functionality
and fixes to include small-ish unit tests. Whenever you make changes, please
re-run the unit test suite (<tt>mvn install</tt> is one way to trigger this),
and ensure your changes don't break anything. If adding new files, please
include the Apache License v2 license header at the top of the file.</p></div>
@@ -297,7 +296,7 @@
</div>
<div id="footer">
<p>
- Copyright © 2015
+ Copyright © 2016
<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