You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tika.apache.org by ni...@apache.org on 2019/09/18 13:50:41 UTC

svn commit: r1867122 [1/2] - in /tika/site/publish: 0.10/ 0.5/ 0.6/ 0.7/ 0.8/ 0.9/ 1.0/ 1.1/ 1.10/ 1.11/ 1.12/ 1.13/ 1.14/ 1.15/ 1.16/ 1.17/ 1.18/ 1.19.1/ 1.19/ 1.2/ 1.20/ 1.21/ 1.22/ 1.3/ 1.4/ 1.5/ 1.6/ 1.7/ 1.8/ 1.9/

Author: nick
Date: Wed Sep 18 13:50:40 2019
New Revision: 1867122

URL: http://svn.apache.org/viewvc?rev=1867122&view=rev
Log:
TIKA-2947 Update source code link

Modified:
    tika/site/publish/0.10/gettingstarted.html
    tika/site/publish/0.5/gettingstarted.html
    tika/site/publish/0.6/gettingstarted.html
    tika/site/publish/0.7/gettingstarted.html
    tika/site/publish/0.8/gettingstarted.html
    tika/site/publish/0.9/gettingstarted.html
    tika/site/publish/1.0/gettingstarted.html
    tika/site/publish/1.1/gettingstarted.html
    tika/site/publish/1.10/gettingstarted.html
    tika/site/publish/1.11/gettingstarted.html
    tika/site/publish/1.12/gettingstarted.html
    tika/site/publish/1.13/gettingstarted.html
    tika/site/publish/1.14/gettingstarted.html
    tika/site/publish/1.15/gettingstarted.html
    tika/site/publish/1.16/gettingstarted.html
    tika/site/publish/1.17/gettingstarted.html
    tika/site/publish/1.18/gettingstarted.html
    tika/site/publish/1.19.1/gettingstarted.html
    tika/site/publish/1.19/gettingstarted.html
    tika/site/publish/1.2/gettingstarted.html
    tika/site/publish/1.20/gettingstarted.html
    tika/site/publish/1.21/gettingstarted.html
    tika/site/publish/1.22/gettingstarted.html
    tika/site/publish/1.3/gettingstarted.html
    tika/site/publish/1.4/gettingstarted.html
    tika/site/publish/1.5/gettingstarted.html
    tika/site/publish/1.6/gettingstarted.html
    tika/site/publish/1.7/gettingstarted.html
    tika/site/publish/1.8/gettingstarted.html
    tika/site/publish/1.9/gettingstarted.html

Modified: tika/site/publish/0.10/gettingstarted.html
URL: http://svn.apache.org/viewvc/tika/site/publish/0.10/gettingstarted.html?rev=1867122&r1=1867121&r2=1867122&view=diff
==============================================================================
--- tika/site/publish/0.10/gettingstarted.html (original)
+++ tika/site/publish/0.10/gettingstarted.html Wed Sep 18 13:50:40 2019
@@ -89,11 +89,10 @@
 <p>This document describes how to build Apache Tika from sources and how to start using Tika in an application.</p></div>
 <div class="section">
 <h2><a name="Getting_and_building_the_sources"></a>Getting and building the sources</h2>
-<p>To build Tika from sources you first need to either <a href="../download.html">download</a> a source release or <a href="../source-repository.html">checkout</a> the latest sources from version control.</p>
+<p>To build Tika from sources you first need to either <a href="../download.html">download</a> a source release or <a href="../contribute.html#Source_Code">checkout</a> the latest sources from version control.</p>
 <p>Once you have the sources, you can build them using the <a class="externalLink" href="http://maven.apache.org/">Maven 2</a> build system. Executing the following command in the base directory will build the sources and install the resulting artifacts in your local Maven repository.</p>
 <div>
-<pre>mvn install
-</pre></div>
+<pre>mvn install</pre></div>
 <p>See the Maven documentation for more information about the available build options.</p>
 <p>Note that you need Java 5 or higher to build Tika.</p></div>
 <div class="section">
@@ -116,16 +115,14 @@
     &lt;groupId&gt;org.apache.tika&lt;/groupId&gt;
     &lt;artifactId&gt;tika-core&lt;/artifactId&gt;
     &lt;version&gt;0.10&lt;/version&gt;
-  &lt;/dependency&gt;
-</pre></div>
+  &lt;/dependency&gt;</pre></div>
 <p>If you want to use Tika to parse documents (instead of simply detecting document types, etc.), you'll want to depend on tika-parsers instead: </p>
 <div>
 <pre>  &lt;dependency&gt;
     &lt;groupId&gt;org.apache.tika&lt;/groupId&gt;
     &lt;artifactId&gt;tika-parsers&lt;/artifactId&gt;
     &lt;version&gt;0.10&lt;/version&gt;
-  &lt;/dependency&gt;
-</pre></div>
+  &lt;/dependency&gt;</pre></div>
 <p>Note that adding this dependency will introduce a number of transitive dependencies to your project, including one on tika-core. You need to make sure that these dependencies won't conflict with your existing project dependencies. The listing below shows all the compile-scope dependencies of tika-parsers in the Tika 0.10 release.</p>
 <div>
 <pre>org.apache.tika:tika-parsers:bundle:0.10
@@ -154,8 +151,7 @@
 +- com.drewnoakes:metadata-extractor:jar:2.4.0-beta-1:compile
 +- de.l3s.boilerpipe:boilerpipe:jar:1.1.0:compile
 +- rome:rome:jar:0.9:compile
-|  \- jdom:jdom:jar:1.0:compile
-</pre></div></div>
+|  \- jdom:jdom:jar:1.0:compile</pre></div></div>
 <div class="section">
 <h2><a name="Using_Tika_in_an_Ant_project"></a>Using Tika in an Ant project</h2>
 <p>Unless you use a dependency manager tool like <a class="externalLink" href="http://ant.apache.org/ivy/">Apache Ivy</a>, to use Tika in you application you can include the Tika jar files and the dependencies individually.</p>
@@ -187,8 +183,7 @@
   &lt;pathelement location=&quot;path/to/boilerpipe-1.1.0.jar&quot;/&gt;
   &lt;pathelement location=&quot;path/to/rome-0.9.jar&quot;/&gt;
   &lt;pathelement location=&quot;path/to/jdom-1.0.jar&quot;/&gt;
-&lt;/classpath&gt;
-</pre></div>
+&lt;/classpath&gt;</pre></div>
 <p>An easy way to gather all these libraries is to run &quot;mvn dependency:copy-dependencies&quot; in the tika-parsers source directory. This will copy all Tika dependencies to the <tt>target/dependencies</tt> directory.</p>
 <p>Alternatively you can simply drop the entire tika-app jar to your classpath to get all of the above dependencies in a single archive.</p></div>
 <div class="section">
@@ -253,15 +248,13 @@ Description:
 
     Use the &quot;-server&quot; (or &quot;-s&quot;) option to start the
     Apache Tika server. The server will listen to the
-    ports you specify as one or more arguments.
-</pre></div>
+    ports you specify as one or more arguments.</pre></div>
 <p>You can also use the jar as a component in a Unix pipeline or as an external tool in many scripting languages.</p>
 <div>
 <pre># Check if an Internet resource contains a specific keyword
 curl http://.../document.doc \
   | java -jar tika-app-0.10.jar --text \
-  | grep -q keyword
-</pre></div></div>
+  | grep -q keyword</pre></div></div>
       </div>
       <div id="sidebar">
         <div id="navigation">

Modified: tika/site/publish/0.5/gettingstarted.html
URL: http://svn.apache.org/viewvc/tika/site/publish/0.5/gettingstarted.html?rev=1867122&r1=1867121&r2=1867122&view=diff
==============================================================================
--- tika/site/publish/0.5/gettingstarted.html (original)
+++ tika/site/publish/0.5/gettingstarted.html Wed Sep 18 13:50:40 2019
@@ -89,11 +89,10 @@
 <p>This document describes how to build Apache Tika from sources and how to start using Tika in an application.</p></div>
 <div class="section">
 <h2><a name="Getting_and_building_the_sources"></a>Getting and building the sources</h2>
-<p>To build Tika from sources you first need to either <a href="../download.html">download</a> a source release or <a href="../source-repository.html">checkout</a> the latest sources from version control.</p>
+<p>To build Tika from sources you first need to either <a href="../download.html">download</a> a source release or <a href="../contribute.html#Source_Code">checkout</a> the latest sources from version control.</p>
 <p>Once you have the sources, you can build them using the <a class="externalLink" href="http://maven.apache.org/">Maven 2</a> build system. Executing the following command in the base directory will build the sources and install the resulting artifacts in your local Maven repository.</p>
 <div>
-<pre>mvn install
-</pre></div>
+<pre>mvn install</pre></div>
 <p>See the Maven documentation for more information about the available build options.</p>
 <p>Note that you need Java 5 or higher to build Tika.</p></div>
 <div class="section">
@@ -116,16 +115,14 @@
     &lt;groupId&gt;org.apache.tika&lt;/groupId&gt;
     &lt;artifactId&gt;tika-core&lt;/artifactId&gt;
     &lt;version&gt;x.y&lt;/version&gt;  &lt;!-- 0.5 or higher --&gt;
-  &lt;/dependency&gt;
-</pre></div>
+  &lt;/dependency&gt;</pre></div>
 <p>This dependency only gives you basic Tika functionality without any of the parser libraries. If you want to use Tika to parse documents (instead of simply detecting document types, etc.), you also need the tika-parsers dependency: </p>
 <div>
 <pre>  &lt;dependency&gt;
     &lt;groupId&gt;org.apache.tika&lt;/groupId&gt;
     &lt;artifactId&gt;tika-parsers&lt;/artifactId&gt;
     &lt;version&gt;x.y&lt;/version&gt;  &lt;!-- same version as in tika-core --&gt;
-  &lt;/dependency&gt;
-</pre></div>
+  &lt;/dependency&gt;</pre></div>
 <p>Note that adding this dependency will introduce a number of transitive dependencies to your project. You need to make sure that these dependencies won't conflict with your existing project dependencies. The listing below shows all the compile-scope dependencies of the current Tika parsers release (0.5, November 2009). You can use the command &quot;mvn dependency:tree&quot; to check the latest tree of dependencies on any one of Tika's core, parsers and app projects.</p>
 <div>
 <pre>org.apache.tika:tika-parent:pom:0.5
@@ -173,8 +170,7 @@ org.apache.tika:tika-app:bundle:0.5
    +- org.ccil.cowan.tagsoup:tagsoup:jar:1.2:provided
    +- asm:asm:jar:3.1:provided
    +- log4j:log4j:jar:1.2.14:provided
-   \- com.drewnoakes:metadata-extractor:jar:2.4.0-beta-1:provided
-</pre></div></div>
+   \- com.drewnoakes:metadata-extractor:jar:2.4.0-beta-1:provided</pre></div></div>
 <div class="section">
 <h2><a name="Using_Tika_in_an_Ant_project"></a>Using Tika in an Ant project</h2>
 <p>Unless you use a dependency manager tool like <a class="externalLink" href="http://ant.apache.org/ivy/">Apache Ivy</a>, to use Tika in you application you can include the Tika jar files and the dependencies individually.</p>
@@ -202,8 +198,7 @@ org.apache.tika:tika-app:bundle:0.5
   &lt;pathelement location=&quot;path/to/geronimo-stax-api_1.0_spec-1.0.jar&quot;/&gt;
   &lt;pathelement location=&quot;path/to/asm-3.1.jar&quot;/&gt;
   &lt;pathelement location=&quot;path/to/log4j-1.2.14.jar&quot;/&gt;
-&lt;/classpath&gt;
-</pre></div>
+&lt;/classpath&gt;</pre></div>
 <p>An easy way to gather all these libraries is to run &quot;mvn dependency:copy-dependencies&quot; in the Tika source directory. This will copy all Tika dependencies to the <tt>target/dependencies</tt> directory.</p>
 <p>Alternatively you can simply drop the entire tika-app jar to your classpath to get all of the above dependencies in a single archive.</p></div>
 <div class="section">
@@ -237,15 +232,13 @@ Description:
     Use the &quot;--gui&quot; (or &quot;-g&quot;) option to start
     the Apache Tika GUI. You can drag and drop files
     from a normal file explorer to the GUI window to
-    extract text content and metadata from the files.
-</pre></div>
+    extract text content and metadata from the files.</pre></div>
 <p>You can also use the jar as a component in a Unix pipeline or as an external tool in many scripting languages.</p>
 <div>
 <pre># Check if an Internet resource contains a specific keyword
 curl http://.../document.doc \
   | java -jar tika-app-x.y.jar --text \
-  | grep -q keyword
-</pre></div></div>
+  | grep -q keyword</pre></div></div>
       </div>
       <div id="sidebar">
         <div id="navigation">

Modified: tika/site/publish/0.6/gettingstarted.html
URL: http://svn.apache.org/viewvc/tika/site/publish/0.6/gettingstarted.html?rev=1867122&r1=1867121&r2=1867122&view=diff
==============================================================================
--- tika/site/publish/0.6/gettingstarted.html (original)
+++ tika/site/publish/0.6/gettingstarted.html Wed Sep 18 13:50:40 2019
@@ -89,11 +89,10 @@
 <p>This document describes how to build Apache Tika from sources and how to start using Tika in an application.</p></div>
 <div class="section">
 <h2><a name="Getting_and_building_the_sources"></a>Getting and building the sources</h2>
-<p>To build Tika from sources you first need to either <a href="../download.html">download</a> a source release or <a href="../source-repository.html">checkout</a> the latest sources from version control.</p>
+<p>To build Tika from sources you first need to either <a href="../download.html">download</a> a source release or <a href="../contribute.html#Source_Code">checkout</a> the latest sources from version control.</p>
 <p>Once you have the sources, you can build them using the <a class="externalLink" href="http://maven.apache.org/">Maven 2</a> build system. Executing the following command in the base directory will build the sources and install the resulting artifacts in your local Maven repository.</p>
 <div>
-<pre>mvn install
-</pre></div>
+<pre>mvn install</pre></div>
 <p>See the Maven documentation for more information about the available build options.</p>
 <p>Note that you need Java 5 or higher to build Tika.</p></div>
 <div class="section">
@@ -116,16 +115,14 @@
     &lt;groupId&gt;org.apache.tika&lt;/groupId&gt;
     &lt;artifactId&gt;tika-core&lt;/artifactId&gt;
     &lt;version&gt;0.6&lt;/version&gt;
-  &lt;/dependency&gt;
-</pre></div>
+  &lt;/dependency&gt;</pre></div>
 <p>If you want to use Tika to parse documents (instead of simply detecting document types, etc.), you'll want to depend on tika-parsers instead: </p>
 <div>
 <pre>  &lt;dependency&gt;
     &lt;groupId&gt;org.apache.tika&lt;/groupId&gt;
     &lt;artifactId&gt;tika-parsers&lt;/artifactId&gt;
     &lt;version&gt;0.6&lt;/version&gt;
-  &lt;/dependency&gt;
-</pre></div>
+  &lt;/dependency&gt;</pre></div>
 <p>Note that adding this dependency will introduce a number of transitive dependencies to your project, including one on tika-core. You need to make sure that these dependencies won't conflict with your existing project dependencies. The listing below shows all the compile-scope dependencies of tika-parsers in the Tika 0.6 release.</p>
 <div>
 <pre>org.apache.tika:tika-parsers:bundle:0.6
@@ -146,8 +143,7 @@
 +- org.ccil.cowan.tagsoup:tagsoup:jar:1.2:compile
 +- asm:asm:jar:3.1:compile
 +- log4j:log4j:jar:1.2.14:compile
-\- com.drewnoakes:metadata-extractor:jar:2.4.0-beta-1:compile
-</pre></div></div>
+\- com.drewnoakes:metadata-extractor:jar:2.4.0-beta-1:compile</pre></div></div>
 <div class="section">
 <h2><a name="Using_Tika_in_an_Ant_project"></a>Using Tika in an Ant project</h2>
 <p>Unless you use a dependency manager tool like <a class="externalLink" href="http://ant.apache.org/ivy/">Apache Ivy</a>, to use Tika in you application you can include the Tika jar files and the dependencies individually.</p>
@@ -173,8 +169,7 @@
   &lt;pathelement location=&quot;path/to/asm-3.1.jar&quot;/&gt;
   &lt;pathelement location=&quot;path/to/log4j-1.2.14.jar&quot;/&gt;
   &lt;pathelement location=&quot;path/to/metadata-extractor-2.4.0-beta-1.jar&quot;/&gt;
-&lt;/classpath&gt;
-</pre></div>
+&lt;/classpath&gt;</pre></div>
 <p>An easy way to gather all these libraries is to run &quot;mvn dependency:copy-dependencies&quot; in the tika-parsers source directory. This will copy all Tika dependencies to the <tt>target/dependencies</tt> directory.</p>
 <p>Alternatively you can simply drop the entire tika-app jar to your classpath to get all of the above dependencies in a single archive.</p></div>
 <div class="section">
@@ -208,15 +203,13 @@ Description:
     Use the &quot;--gui&quot; (or &quot;-g&quot;) option to start
     the Apache Tika GUI. You can drag and drop files
     from a normal file explorer to the GUI window to
-    extract text content and metadata from the files.
-</pre></div>
+    extract text content and metadata from the files.</pre></div>
 <p>You can also use the jar as a component in a Unix pipeline or as an external tool in many scripting languages.</p>
 <div>
 <pre># Check if an Internet resource contains a specific keyword
 curl http://.../document.doc \
   | java -jar tika-app-0.6.jar --text \
-  | grep -q keyword
-</pre></div></div>
+  | grep -q keyword</pre></div></div>
       </div>
       <div id="sidebar">
         <div id="navigation">

Modified: tika/site/publish/0.7/gettingstarted.html
URL: http://svn.apache.org/viewvc/tika/site/publish/0.7/gettingstarted.html?rev=1867122&r1=1867121&r2=1867122&view=diff
==============================================================================
--- tika/site/publish/0.7/gettingstarted.html (original)
+++ tika/site/publish/0.7/gettingstarted.html Wed Sep 18 13:50:40 2019
@@ -89,11 +89,10 @@
 <p>This document describes how to build Apache Tika from sources and how to start using Tika in an application.</p></div>
 <div class="section">
 <h2><a name="Getting_and_building_the_sources"></a>Getting and building the sources</h2>
-<p>To build Tika from sources you first need to either <a href="../download.html">download</a> a source release or <a href="../source-repository.html">checkout</a> the latest sources from version control.</p>
+<p>To build Tika from sources you first need to either <a href="../download.html">download</a> a source release or <a href="../contribute.html#Source_Code">checkout</a> the latest sources from version control.</p>
 <p>Once you have the sources, you can build them using the <a class="externalLink" href="http://maven.apache.org/">Maven 2</a> build system. Executing the following command in the base directory will build the sources and install the resulting artifacts in your local Maven repository.</p>
 <div>
-<pre>mvn install
-</pre></div>
+<pre>mvn install</pre></div>
 <p>See the Maven documentation for more information about the available build options.</p>
 <p>Note that you need Java 5 or higher to build Tika.</p></div>
 <div class="section">
@@ -116,16 +115,14 @@
     &lt;groupId&gt;org.apache.tika&lt;/groupId&gt;
     &lt;artifactId&gt;tika-core&lt;/artifactId&gt;
     &lt;version&gt;0.7&lt;/version&gt;
-  &lt;/dependency&gt;
-</pre></div>
+  &lt;/dependency&gt;</pre></div>
 <p>If you want to use Tika to parse documents (instead of simply detecting document types, etc.), you'll want to depend on tika-parsers instead: </p>
 <div>
 <pre>  &lt;dependency&gt;
     &lt;groupId&gt;org.apache.tika&lt;/groupId&gt;
     &lt;artifactId&gt;tika-parsers&lt;/artifactId&gt;
     &lt;version&gt;0.7&lt;/version&gt;
-  &lt;/dependency&gt;
-</pre></div>
+  &lt;/dependency&gt;</pre></div>
 <p>Note that adding this dependency will introduce a number of transitive dependencies to your project, including one on tika-core. You need to make sure that these dependencies won't conflict with your existing project dependencies. The listing below shows all the compile-scope dependencies of tika-parsers in the Tika 0.7 release.</p>
 <div>
 <pre>org.apache.tika:tika-parsers:bundle:0.7
@@ -152,8 +149,7 @@
 +- org.mockito:mockito-core:jar:1.7:test
 |  +- org.hamcrest:hamcrest-core:jar:1.1:test
 |  \- org.objenesis:objenesis:jar:1.0:test
-\- com.drewnoakes:metadata-extractor:jar:2.4.0-beta-1:compile
-</pre></div></div>
+\- com.drewnoakes:metadata-extractor:jar:2.4.0-beta-1:compile</pre></div></div>
 <div class="section">
 <h2><a name="Using_Tika_in_an_Ant_project"></a>Using Tika in an Ant project</h2>
 <p>Unless you use a dependency manager tool like <a class="externalLink" href="http://ant.apache.org/ivy/">Apache Ivy</a>, to use Tika in you application you can include the Tika jar files and the dependencies individually.</p>
@@ -179,8 +175,7 @@
   &lt;pathelement location=&quot;path/to/asm-3.1.jar&quot;/&gt;
   &lt;pathelement location=&quot;path/to/log4j-1.2.14.jar&quot;/&gt;
   &lt;pathelement location=&quot;path/to/metadata-extractor-2.4.0-beta-1.jar&quot;/&gt;
-&lt;/classpath&gt;
-</pre></div>
+&lt;/classpath&gt;</pre></div>
 <p>An easy way to gather all these libraries is to run &quot;mvn dependency:copy-dependencies&quot; in the tika-parsers source directory. This will copy all Tika dependencies to the <tt>target/dependencies</tt> directory.</p>
 <p>Alternatively you can simply drop the entire tika-app jar to your classpath to get all of the above dependencies in a single archive.</p></div>
 <div class="section">
@@ -214,15 +209,13 @@ Description:
     Use the &quot;--gui&quot; (or &quot;-g&quot;) option to start
     the Apache Tika GUI. You can drag and drop files
     from a normal file explorer to the GUI window to
-    extract text content and metadata from the files.
-</pre></div>
+    extract text content and metadata from the files.</pre></div>
 <p>You can also use the jar as a component in a Unix pipeline or as an external tool in many scripting languages.</p>
 <div>
 <pre># Check if an Internet resource contains a specific keyword
 curl http://.../document.doc \
   | java -jar tika-app-0.7.jar --text \
-  | grep -q keyword
-</pre></div></div>
+  | grep -q keyword</pre></div></div>
       </div>
       <div id="sidebar">
         <div id="navigation">

Modified: tika/site/publish/0.8/gettingstarted.html
URL: http://svn.apache.org/viewvc/tika/site/publish/0.8/gettingstarted.html?rev=1867122&r1=1867121&r2=1867122&view=diff
==============================================================================
--- tika/site/publish/0.8/gettingstarted.html (original)
+++ tika/site/publish/0.8/gettingstarted.html Wed Sep 18 13:50:40 2019
@@ -89,11 +89,10 @@
 <p>This document describes how to build Apache Tika from sources and how to start using Tika in an application.</p></div>
 <div class="section">
 <h2><a name="Getting_and_building_the_sources"></a>Getting and building the sources</h2>
-<p>To build Tika from sources you first need to either <a href="../download.html">download</a> a source release or <a href="../source-repository.html">checkout</a> the latest sources from version control.</p>
+<p>To build Tika from sources you first need to either <a href="../download.html">download</a> a source release or <a href="../contribute.html#Source_Code">checkout</a> the latest sources from version control.</p>
 <p>Once you have the sources, you can build them using the <a class="externalLink" href="http://maven.apache.org/">Maven 2</a> build system. Executing the following command in the base directory will build the sources and install the resulting artifacts in your local Maven repository.</p>
 <div>
-<pre>mvn install
-</pre></div>
+<pre>mvn install</pre></div>
 <p>See the Maven documentation for more information about the available build options.</p>
 <p>Note that you need Java 5 or higher to build Tika.</p></div>
 <div class="section">
@@ -116,16 +115,14 @@
     &lt;groupId&gt;org.apache.tika&lt;/groupId&gt;
     &lt;artifactId&gt;tika-core&lt;/artifactId&gt;
     &lt;version&gt;0.8&lt;/version&gt;
-  &lt;/dependency&gt;
-</pre></div>
+  &lt;/dependency&gt;</pre></div>
 <p>If you want to use Tika to parse documents (instead of simply detecting document types, etc.), you'll want to depend on tika-parsers instead: </p>
 <div>
 <pre>  &lt;dependency&gt;
     &lt;groupId&gt;org.apache.tika&lt;/groupId&gt;
     &lt;artifactId&gt;tika-parsers&lt;/artifactId&gt;
     &lt;version&gt;0.8&lt;/version&gt;
-  &lt;/dependency&gt;
-</pre></div>
+  &lt;/dependency&gt;</pre></div>
 <p>Note that adding this dependency will introduce a number of transitive dependencies to your project, including one on tika-core. You need to make sure that these dependencies won't conflict with your existing project dependencies. The listing below shows all the compile-scope dependencies of tika-parsers in the Tika 0.8 release.</p>
 <div>
 <pre>org.apache.tika:tika-parsers:bundle:0.8
@@ -146,8 +143,7 @@
 +- org.ccil.cowan.tagsoup:tagsoup:jar:1.2:compile
 +- asm:asm:jar:3.1:compile
 +- log4j:log4j:jar:1.2.14:compile
-\- com.drewnoakes:metadata-extractor:jar:2.4.0-beta-1:compile
-</pre></div></div>
+\- com.drewnoakes:metadata-extractor:jar:2.4.0-beta-1:compile</pre></div></div>
 <div class="section">
 <h2><a name="Using_Tika_in_an_Ant_project"></a>Using Tika in an Ant project</h2>
 <p>Unless you use a dependency manager tool like <a class="externalLink" href="http://ant.apache.org/ivy/">Apache Ivy</a>, to use Tika in you application you can include the Tika jar files and the dependencies individually.</p>
@@ -173,8 +169,7 @@
   &lt;pathelement location=&quot;path/to/asm-3.1.jar&quot;/&gt;
   &lt;pathelement location=&quot;path/to/log4j-1.2.14.jar&quot;/&gt;
   &lt;pathelement location=&quot;path/to/metadata-extractor-2.4.0-beta-1.jar&quot;/&gt;
-&lt;/classpath&gt;
-</pre></div>
+&lt;/classpath&gt;</pre></div>
 <p>An easy way to gather all these libraries is to run &quot;mvn dependency:copy-dependencies&quot; in the tika-parsers source directory. This will copy all Tika dependencies to the <tt>target/dependencies</tt> directory.</p>
 <p>Alternatively you can simply drop the entire tika-app jar to your classpath to get all of the above dependencies in a single archive.</p></div>
 <div class="section">
@@ -208,15 +203,13 @@ Description:
     Use the &quot;--gui&quot; (or &quot;-g&quot;) option to start
     the Apache Tika GUI. You can drag and drop files
     from a normal file explorer to the GUI window to
-    extract text content and metadata from the files.
-</pre></div>
+    extract text content and metadata from the files.</pre></div>
 <p>You can also use the jar as a component in a Unix pipeline or as an external tool in many scripting languages.</p>
 <div>
 <pre># Check if an Internet resource contains a specific keyword
 curl http://.../document.doc \
   | java -jar tika-app-0.8.jar --text \
-  | grep -q keyword
-</pre></div></div>
+  | grep -q keyword</pre></div></div>
       </div>
       <div id="sidebar">
         <div id="navigation">

Modified: tika/site/publish/0.9/gettingstarted.html
URL: http://svn.apache.org/viewvc/tika/site/publish/0.9/gettingstarted.html?rev=1867122&r1=1867121&r2=1867122&view=diff
==============================================================================
--- tika/site/publish/0.9/gettingstarted.html (original)
+++ tika/site/publish/0.9/gettingstarted.html Wed Sep 18 13:50:40 2019
@@ -89,11 +89,10 @@
 <p>This document describes how to build Apache Tika from sources and how to start using Tika in an application.</p></div>
 <div class="section">
 <h2><a name="Getting_and_building_the_sources"></a>Getting and building the sources</h2>
-<p>To build Tika from sources you first need to either <a href="../download.html">download</a> a source release or <a href="../source-repository.html">checkout</a> the latest sources from version control.</p>
+<p>To build Tika from sources you first need to either <a href="../download.html">download</a> a source release or <a href="../contribute.html#Source_Code">checkout</a> the latest sources from version control.</p>
 <p>Once you have the sources, you can build them using the <a class="externalLink" href="http://maven.apache.org/">Maven 2</a> build system. Executing the following command in the base directory will build the sources and install the resulting artifacts in your local Maven repository.</p>
 <div>
-<pre>mvn install
-</pre></div>
+<pre>mvn install</pre></div>
 <p>See the Maven documentation for more information about the available build options.</p>
 <p>Note that you need Java 5 or higher to build Tika.</p></div>
 <div class="section">
@@ -116,16 +115,14 @@
     &lt;groupId&gt;org.apache.tika&lt;/groupId&gt;
     &lt;artifactId&gt;tika-core&lt;/artifactId&gt;
     &lt;version&gt;0.9&lt;/version&gt;
-  &lt;/dependency&gt;
-</pre></div>
+  &lt;/dependency&gt;</pre></div>
 <p>If you want to use Tika to parse documents (instead of simply detecting document types, etc.), you'll want to depend on tika-parsers instead: </p>
 <div>
 <pre>  &lt;dependency&gt;
     &lt;groupId&gt;org.apache.tika&lt;/groupId&gt;
     &lt;artifactId&gt;tika-parsers&lt;/artifactId&gt;
     &lt;version&gt;0.9&lt;/version&gt;
-  &lt;/dependency&gt;
-</pre></div>
+  &lt;/dependency&gt;</pre></div>
 <p>Note that adding this dependency will introduce a number of transitive dependencies to your project, including one on tika-core. You need to make sure that these dependencies won't conflict with your existing project dependencies. The listing below shows all the compile-scope dependencies of tika-parsers in the Tika 0.9 release.</p>
 <div>
 <pre>\- org.apache.tika:tika-parsers:jar:0.9:provided
@@ -153,8 +150,7 @@
    +- com.drewnoakes:metadata-extractor:jar:2.4.0-beta-1:provided
    +- de.l3s.boilerpipe:boilerpipe:jar:1.1.0:provided
    \- rome:rome:jar:0.9:provided
-      \- jdom:jdom:jar:1.0:provided
-</pre></div></div>
+      \- jdom:jdom:jar:1.0:provided</pre></div></div>
 <div class="section">
 <h2><a name="Using_Tika_in_an_Ant_project"></a>Using Tika in an Ant project</h2>
 <p>Unless you use a dependency manager tool like <a class="externalLink" href="http://ant.apache.org/ivy/">Apache Ivy</a>, to use Tika in you application you can include the Tika jar files and the dependencies individually.</p>
@@ -180,8 +176,7 @@
   &lt;pathelement location=&quot;path/to/asm-3.1.jar&quot;/&gt;
   &lt;pathelement location=&quot;path/to/log4j-1.2.14.jar&quot;/&gt;
   &lt;pathelement location=&quot;path/to/metadata-extractor-2.4.0-beta-1.jar&quot;/&gt;
-&lt;/classpath&gt;
-</pre></div>
+&lt;/classpath&gt;</pre></div>
 <p>An easy way to gather all these libraries is to run &quot;mvn dependency:copy-dependencies&quot; in the tika-parsers source directory. This will copy all Tika dependencies to the <tt>target/dependencies</tt> directory.</p>
 <p>Alternatively you can simply drop the entire tika-app jar to your classpath to get all of the above dependencies in a single archive.</p></div>
 <div class="section">
@@ -215,15 +210,13 @@ Description:
     Use the &quot;--gui&quot; (or &quot;-g&quot;) option to start
     the Apache Tika GUI. You can drag and drop files
     from a normal file explorer to the GUI window to
-    extract text content and metadata from the files.
-</pre></div>
+    extract text content and metadata from the files.</pre></div>
 <p>You can also use the jar as a component in a Unix pipeline or as an external tool in many scripting languages.</p>
 <div>
 <pre># Check if an Internet resource contains a specific keyword
 curl http://.../document.doc \
   | java -jar tika-app-0.9.jar --text \
-  | grep -q keyword
-</pre></div></div>
+  | grep -q keyword</pre></div></div>
       </div>
       <div id="sidebar">
         <div id="navigation">

Modified: tika/site/publish/1.0/gettingstarted.html
URL: http://svn.apache.org/viewvc/tika/site/publish/1.0/gettingstarted.html?rev=1867122&r1=1867121&r2=1867122&view=diff
==============================================================================
--- tika/site/publish/1.0/gettingstarted.html (original)
+++ tika/site/publish/1.0/gettingstarted.html Wed Sep 18 13:50:40 2019
@@ -89,11 +89,10 @@
 <p>This document describes how to build Apache Tika from sources and how to start using Tika in an application.</p></div>
 <div class="section">
 <h2><a name="Getting_and_building_the_sources"></a>Getting and building the sources</h2>
-<p>To build Tika from sources you first need to either <a href="../download.html">download</a> a source release or <a href="../source-repository.html">checkout</a> the latest sources from version control.</p>
+<p>To build Tika from sources you first need to either <a href="../download.html">download</a> a source release or <a href="../contribute.html#Source_Code">checkout</a> the latest sources from version control.</p>
 <p>Once you have the sources, you can build them using the <a class="externalLink" href="http://maven.apache.org/">Maven 2</a> build system. Executing the following command in the base directory will build the sources and install the resulting artifacts in your local Maven repository.</p>
 <div>
-<pre>mvn install
-</pre></div>
+<pre>mvn install</pre></div>
 <p>See the Maven documentation for more information about the available build options.</p>
 <p>Note that you need Java 5 or higher to build Tika.</p></div>
 <div class="section">
@@ -116,16 +115,14 @@
     &lt;groupId&gt;org.apache.tika&lt;/groupId&gt;
     &lt;artifactId&gt;tika-core&lt;/artifactId&gt;
     &lt;version&gt;1.0&lt;/version&gt;
-  &lt;/dependency&gt;
-</pre></div>
+  &lt;/dependency&gt;</pre></div>
 <p>If you want to use Tika to parse documents (instead of simply detecting document types, etc.), you'll want to depend on tika-parsers instead: </p>
 <div>
 <pre>  &lt;dependency&gt;
     &lt;groupId&gt;org.apache.tika&lt;/groupId&gt;
     &lt;artifactId&gt;tika-parsers&lt;/artifactId&gt;
     &lt;version&gt;1.0&lt;/version&gt;
-  &lt;/dependency&gt;
-</pre></div>
+  &lt;/dependency&gt;</pre></div>
 <p>Note that adding this dependency will introduce a number of transitive dependencies to your project, including one on tika-core. You need to make sure that these dependencies won't conflict with your existing project dependencies. The listing below shows all the compile-scope dependencies of tika-parsers in the Tika 1.0 release.</p>
 <div>
 <pre>   org.apache.tika:tika-parsers:bundle:1.0
@@ -154,8 +151,7 @@
    +- com.drewnoakes:metadata-extractor:jar:2.4.0-beta-1:compile
    +- de.l3s.boilerpipe:boilerpipe:jar:1.1.0:compile
    +- rome:rome:jar:0.9:compile
-      \- jdom:jdom:jar:1.0:compile
-</pre></div></div>
+      \- jdom:jdom:jar:1.0:compile</pre></div></div>
 <div class="section">
 <h2><a name="Using_Tika_in_an_Ant_project"></a>Using Tika in an Ant project</h2>
 <p>Unless you use a dependency manager tool like <a class="externalLink" href="http://ant.apache.org/ivy/">Apache Ivy</a>, to use Tika in you application you can include the Tika jar files and the dependencies individually.</p>
@@ -181,8 +177,7 @@
   &lt;pathelement location=&quot;path/to/asm-3.1.jar&quot;/&gt;
   &lt;pathelement location=&quot;path/to/log4j-1.2.14.jar&quot;/&gt;
   &lt;pathelement location=&quot;path/to/metadata-extractor-2.4.0-beta-1.jar&quot;/&gt;
-&lt;/classpath&gt;
-</pre></div>
+&lt;/classpath&gt;</pre></div>
 <p>An easy way to gather all these libraries is to run &quot;mvn dependency:copy-dependencies&quot; in the tika-parsers source directory. This will copy all Tika dependencies to the <tt>target/dependencies</tt> directory.</p>
 <p>Alternatively you can simply drop the entire tika-app jar to your classpath to get all of the above dependencies in a single archive.</p></div>
 <div class="section">
@@ -216,15 +211,13 @@ Description:
     Use the &quot;--gui&quot; (or &quot;-g&quot;) option to start
     the Apache Tika GUI. You can drag and drop files
     from a normal file explorer to the GUI window to
-    extract text content and metadata from the files.
-</pre></div>
+    extract text content and metadata from the files.</pre></div>
 <p>You can also use the jar as a component in a Unix pipeline or as an external tool in many scripting languages.</p>
 <div>
 <pre># Check if an Internet resource contains a specific keyword
 curl http://.../document.doc \
   | java -jar tika-app-1.0.jar --text \
-  | grep -q keyword
-</pre></div></div>
+  | grep -q keyword</pre></div></div>
       </div>
       <div id="sidebar">
         <div id="navigation">

Modified: tika/site/publish/1.1/gettingstarted.html
URL: http://svn.apache.org/viewvc/tika/site/publish/1.1/gettingstarted.html?rev=1867122&r1=1867121&r2=1867122&view=diff
==============================================================================
--- tika/site/publish/1.1/gettingstarted.html (original)
+++ tika/site/publish/1.1/gettingstarted.html Wed Sep 18 13:50:40 2019
@@ -89,11 +89,10 @@
 <p>This document describes how to build Apache Tika from sources and how to start using Tika in an application.</p></div>
 <div class="section">
 <h2><a name="Getting_and_building_the_sources"></a>Getting and building the sources</h2>
-<p>To build Tika from sources you first need to either <a href="../download.html">download</a> a source release or <a href="../source-repository.html">checkout</a> the latest sources from version control.</p>
+<p>To build Tika from sources you first need to either <a href="../download.html">download</a> a source release or <a href="../contribute.html#Source_Code">checkout</a> the latest sources from version control.</p>
 <p>Once you have the sources, you can build them using the <a class="externalLink" href="http://maven.apache.org/">Maven 2</a> build system. Executing the following command in the base directory will build the sources and install the resulting artifacts in your local Maven repository.</p>
 <div>
-<pre>mvn install
-</pre></div>
+<pre>mvn install</pre></div>
 <p>See the Maven documentation for more information about the available build options.</p>
 <p>Note that you need Java 5 or higher to build Tika.</p></div>
 <div class="section">
@@ -116,16 +115,14 @@
     &lt;groupId&gt;org.apache.tika&lt;/groupId&gt;
     &lt;artifactId&gt;tika-core&lt;/artifactId&gt;
     &lt;version&gt;1.1&lt;/version&gt;
-  &lt;/dependency&gt;
-</pre></div>
+  &lt;/dependency&gt;</pre></div>
 <p>If you want to use Tika to parse documents (instead of simply detecting document types, etc.), you'll want to depend on tika-parsers instead: </p>
 <div>
 <pre>  &lt;dependency&gt;
     &lt;groupId&gt;org.apache.tika&lt;/groupId&gt;
     &lt;artifactId&gt;tika-parsers&lt;/artifactId&gt;
     &lt;version&gt;1.1&lt;/version&gt;
-  &lt;/dependency&gt;
-</pre></div>
+  &lt;/dependency&gt;</pre></div>
 <p>Note that adding this dependency will introduce a number of transitive dependencies to your project, including one on tika-core. You need to make sure that these dependencies won't conflict with your existing project dependencies. The listing below shows all the compile-scope dependencies of tika-parsers in the Tika 1.1 release.</p>
 <div>
 <pre>+- org.apache.tika:tika-core:jar:1.1:compile
@@ -167,7 +164,6 @@
 |  \- org.objenesis:objenesis:jar:1.0:test
 \- org.slf4j:slf4j-log4j12:jar:1.5.6:test
    \- log4j:log4j:jar:1.2.14:test
-
 </pre></div></div>
 <div class="section">
 <h2><a name="Using_Tika_in_an_Ant_project"></a>Using Tika in an Ant project</h2>
@@ -194,8 +190,7 @@
   &lt;pathelement location=&quot;path/to/asm-3.1.jar&quot;/&gt;
   &lt;pathelement location=&quot;path/to/log4j-1.2.14.jar&quot;/&gt;
   &lt;pathelement location=&quot;path/to/metadata-extractor-2.4.0-beta-1.jar&quot;/&gt;
-&lt;/classpath&gt;
-</pre></div>
+&lt;/classpath&gt;</pre></div>
 <p>An easy way to gather all these libraries is to run &quot;mvn dependency:copy-dependencies&quot; in the tika-parsers source directory. This will copy all Tika dependencies to the <tt>target/dependencies</tt> directory.</p>
 <p>Alternatively you can simply drop the entire tika-app jar to your classpath to get all of the above dependencies in a single archive.</p></div>
 <div class="section">
@@ -229,15 +224,13 @@ Description:
     Use the &quot;--gui&quot; (or &quot;-g&quot;) option to start
     the Apache Tika GUI. You can drag and drop files
     from a normal file explorer to the GUI window to
-    extract text content and metadata from the files.
-</pre></div>
+    extract text content and metadata from the files.</pre></div>
 <p>You can also use the jar as a component in a Unix pipeline or as an external tool in many scripting languages.</p>
 <div>
 <pre># Check if an Internet resource contains a specific keyword
 curl http://.../document.doc \
   | java -jar tika-app-1.1.jar --text \
-  | grep -q keyword
-</pre></div></div>
+  | grep -q keyword</pre></div></div>
       </div>
       <div id="sidebar">
         <div id="navigation">

Modified: tika/site/publish/1.10/gettingstarted.html
URL: http://svn.apache.org/viewvc/tika/site/publish/1.10/gettingstarted.html?rev=1867122&r1=1867121&r2=1867122&view=diff
==============================================================================
--- tika/site/publish/1.10/gettingstarted.html (original)
+++ tika/site/publish/1.10/gettingstarted.html Wed Sep 18 13:50:40 2019
@@ -89,11 +89,10 @@
 <p>This document describes how to build Apache Tika from sources and how to start using Tika in an application.</p></div>
 <div class="section">
 <h2><a name="Getting_and_building_the_sources"></a>Getting and building the sources</h2>
-<p>To build Tika from sources you first need to either <a href="../download.html">download</a> a source release or <a href="../source-repository.html">checkout</a> the latest sources from version control.</p>
+<p>To build Tika from sources you first need to either <a href="../download.html">download</a> a source release or <a href="../contribute.html#Source_Code">checkout</a> the latest sources from version control.</p>
 <p>Once you have the sources, you can build them using the <a class="externalLink" href="http://maven.apache.org/">Maven 2</a> build system. Executing the following command in the base directory will build the sources and install the resulting artifacts in your local Maven repository.</p>
 <div>
-<pre>mvn install
-</pre></div>
+<pre>mvn install</pre></div>
 <p>See the Maven documentation for more information about the available build options.</p>
 <p>Note that you need Java 7 or higher to build Tika.</p></div>
 <div class="section">
@@ -118,20 +117,17 @@
     &lt;groupId&gt;org.apache.tika&lt;/groupId&gt;
     &lt;artifactId&gt;tika-core&lt;/artifactId&gt;
     &lt;version&gt;...&lt;/version&gt;
-  &lt;/dependency&gt;
-</pre></div>
+  &lt;/dependency&gt;</pre></div>
 <p>If you want to use Tika to parse documents (instead of simply detecting document types, etc.), you'll want to depend on tika-parsers instead: </p>
 <div>
 <pre>  &lt;dependency&gt;
     &lt;groupId&gt;org.apache.tika&lt;/groupId&gt;
     &lt;artifactId&gt;tika-parsers&lt;/artifactId&gt;
     &lt;version&gt;...&lt;/version&gt;
-  &lt;/dependency&gt;
-</pre></div>
+  &lt;/dependency&gt;</pre></div>
 <p>Note that adding this dependency will introduce a number of transitive dependencies to your project, including one on tika-core. You need to make sure that these dependencies won't conflict with your existing project dependencies. You can use the following command in the tika-parsers directory to get a full listing of all the dependencies.</p>
 <div>
-<pre>$ mvn dependency:tree | grep :compile
-</pre></div></div>
+<pre>$ mvn dependency:tree | grep :compile</pre></div></div>
 <div class="section">
 <h2><a name="Using_Tika_in_an_Ant_project"></a>Using Tika in an Ant project</h2>
 <p>Unless you use a dependency manager tool like <a class="externalLink" href="http://ant.apache.org/ivy/">Apache Ivy</a>, the easiest way to use Tika is to include either the tika-core or the tika-app jar in your classpath, depending on whether you want just the core functionality or also all the parser implementations.</p>
@@ -144,8 +140,7 @@
   &lt;!-- or: --&gt;
   &lt;pathelement location=&quot;path/to/tika-app-${tika.version}.jar&quot;/&gt;
 
-&lt;/classpath&gt;
-</pre></div></div>
+&lt;/classpath&gt;</pre></div></div>
 <div class="section">
 <h2><a name="Using_Tika_as_a_command_line_utility"></a>Using Tika as a command line utility</h2>
 <p>The Tika application jar (tika-app-*.jar) can be used as a command line utility for extracting text content and metadata from all sorts of files. This runnable jar contains all the dependencies it needs, so you don't need to worry about classpath settings to run it.</p>
@@ -215,15 +210,13 @@ Description:
 
     Use the &quot;--server&quot; (or &quot;-s&quot;) option to start the
     Apache Tika server. The server will listen to the
-    ports you specify as one or more arguments.
-</pre></div>
+    ports you specify as one or more arguments.</pre></div>
 <p>You can also use the jar as a component in a Unix pipeline or as an external tool in many scripting languages.</p>
 <div>
 <pre># Check if an Internet resource contains a specific keyword
 curl http://.../document.doc \
   | java -jar tika-app.jar --text \
-  | grep -q keyword
-</pre></div></div>
+  | grep -q keyword</pre></div></div>
 <div class="section">
 <h2><a name="Wrappers"></a>Wrappers</h2>
 <p>Several wrappers are available to use Tika in another programming language, such as <a class="externalLink" href="https://github.com/aviks/Taro.jl">Julia</a> or <a class="externalLink" href="https://github.com/chrismattmann/tika-python">Python</a>.</p></div>

Modified: tika/site/publish/1.11/gettingstarted.html
URL: http://svn.apache.org/viewvc/tika/site/publish/1.11/gettingstarted.html?rev=1867122&r1=1867121&r2=1867122&view=diff
==============================================================================
--- tika/site/publish/1.11/gettingstarted.html (original)
+++ tika/site/publish/1.11/gettingstarted.html Wed Sep 18 13:50:40 2019
@@ -89,11 +89,10 @@
 <p>This document describes how to build Apache Tika from sources and how to start using Tika in an application.</p></div>
 <div class="section">
 <h2><a name="Getting_and_building_the_sources"></a>Getting and building the sources</h2>
-<p>To build Tika from sources you first need to either <a href="../download.html">download</a> a source release or <a href="../source-repository.html">checkout</a> the latest sources from version control.</p>
+<p>To build Tika from sources you first need to either <a href="../download.html">download</a> a source release or <a href="../contribute.html#Source_Code">checkout</a> the latest sources from version control.</p>
 <p>Once you have the sources, you can build them using the <a class="externalLink" href="http://maven.apache.org/">Maven 2</a> build system. Executing the following command in the base directory will build the sources and install the resulting artifacts in your local Maven repository.</p>
 <div>
-<pre>mvn install
-</pre></div>
+<pre>mvn install</pre></div>
 <p>See the Maven documentation for more information about the available build options.</p>
 <p>Note that you need Java 7 or higher to build Tika.</p></div>
 <div class="section">
@@ -118,36 +117,31 @@
     &lt;groupId&gt;org.apache.tika&lt;/groupId&gt;
     &lt;artifactId&gt;tika-core&lt;/artifactId&gt;
     &lt;version&gt;1.11&lt;/version&gt;
-  &lt;/dependency&gt;
-</pre></div>
+  &lt;/dependency&gt;</pre></div>
 <p>If you want to use Tika to parse documents (instead of simply detecting document types, etc.), you'll want to depend on <tt> tika-parsers </tt> instead: </p>
 <div>
 <pre>  &lt;dependency&gt;
     &lt;groupId&gt;org.apache.tika&lt;/groupId&gt;
     &lt;artifactId&gt;tika-parsers&lt;/artifactId&gt;
     &lt;version&gt;1.11&lt;/version&gt;
-  &lt;/dependency&gt;
-</pre></div>
+  &lt;/dependency&gt;</pre></div>
 <p>Note that adding this dependency will introduce a number of transitive dependencies to your project, including one on tika-core. You need to make sure that these dependencies won't conflict with your existing project dependencies. You can use the following command in the tika-parsers directory to get a full listing of all the dependencies.</p>
 <div>
-<pre>$ mvn dependency:tree | grep :compile
-</pre></div></div>
+<pre>$ mvn dependency:tree | grep :compile</pre></div></div>
 <div class="section">
 <h2><a name="Using_Tika_in_a_Gradle-built_project"></a>Using Tika in a Gradle-built project</h2>
 <p>To add a dependency on Apache Tika to your Gradle built project, including the full set of parsers, you should depend on the <tt> tika-parsers </tt> artifact:</p>
 <div>
 <pre>dependencies {
     runtime 'org.apache.tika:tika-parsers:1.11'
-}
-</pre></div></div>
+}</pre></div></div>
 <div class="section">
 <h2><a name="Using_Tika_in_an_Ant_project"></a>Using Tika in an Ant project</h2>
 <p>If you are using <a class="externalLink" href="http://ant.apache.org/ivy/">Apache Ivy</a> as your dependency manager tool with Ant, then to include Tika with the full set of parsers, you should depend on the <tt> tika-parsers </tt> artifact like this:</p>
 <div>
 <pre>    &lt;dependencies&gt;
         &lt;dependency org=&quot;org.apache.tika&quot; name=&quot;tika-parsers&quot; rev=&quot;1.11&quot;/&gt;
-    &lt;/dependencies&gt;
-</pre></div>
+    &lt;/dependencies&gt;</pre></div>
 <p>Otherwise, probably the easiest way to use Tika is to include the full <tt> tika-app </tt> jar on your classpath. For just core functionality, you can add the <tt> tika-core </tt> jar, but be aware that the full set of parsers have a large number of dependencies which must be included which is very fiddly to do by hand with Ant! To include Tika in your Ant project, you should do something like:</p>
 <div>
 <pre>&lt;classpath&gt;
@@ -158,8 +152,7 @@
   &lt;!-- or: Tika with all Parsers--&gt;
   &lt;pathelement location=&quot;path/to/tika-app-${tika.version}.jar&quot;/&gt;
 
-&lt;/classpath&gt;
-</pre></div></div>
+&lt;/classpath&gt;</pre></div></div>
 <div class="section">
 <h2><a name="Using_Tika_as_a_command_line_utility"></a>Using Tika as a command line utility</h2>
 <p>The Tika application jar (tika-app-*.jar) can be used as a command line utility for extracting text content and metadata from all sorts of files. This runnable jar contains all the dependencies it needs, so you don't need to worry about classpath settings to run it.</p>
@@ -229,15 +222,13 @@ Description:
 
     Use the &quot;--server&quot; (or &quot;-s&quot;) option to start the
     Apache Tika server. The server will listen to the
-    ports you specify as one or more arguments.
-</pre></div>
+    ports you specify as one or more arguments.</pre></div>
 <p>You can also use the jar as a component in a Unix pipeline or as an external tool in many scripting languages.</p>
 <div>
 <pre># Check if an Internet resource contains a specific keyword
 curl http://.../document.doc \
   | java -jar tika-app.jar --text \
-  | grep -q keyword
-</pre></div></div>
+  | grep -q keyword</pre></div></div>
 <div class="section">
 <h2><a name="Wrappers"></a>Wrappers</h2>
 <p>Several wrappers are available to use Tika in another programming language, such as <a class="externalLink" href="https://github.com/aviks/Taro.jl">Julia</a> or <a class="externalLink" href="https://github.com/chrismattmann/tika-python">Python</a>.</p></div>

Modified: tika/site/publish/1.12/gettingstarted.html
URL: http://svn.apache.org/viewvc/tika/site/publish/1.12/gettingstarted.html?rev=1867122&r1=1867121&r2=1867122&view=diff
==============================================================================
--- tika/site/publish/1.12/gettingstarted.html (original)
+++ tika/site/publish/1.12/gettingstarted.html Wed Sep 18 13:50:40 2019
@@ -89,11 +89,10 @@
 <p>This document describes how to build Apache Tika from sources and how to start using Tika in an application.</p></div>
 <div class="section">
 <h2><a name="Getting_and_building_the_sources"></a>Getting and building the sources</h2>
-<p>To build Tika from sources you first need to either <a href="../download.html">download</a> a source release or <a href="../source-repository.html">checkout</a> the latest sources from version control.</p>
+<p>To build Tika from sources you first need to either <a href="../download.html">download</a> a source release or <a href="../contribute.html#Source_Code">checkout</a> the latest sources from version control.</p>
 <p>Once you have the sources, you can build them using the <a class="externalLink" href="http://maven.apache.org/">Maven 2</a> build system. Executing the following command in the base directory will build the sources and install the resulting artifacts in your local Maven repository.</p>
 <div>
-<pre>mvn install
-</pre></div>
+<pre>mvn install</pre></div>
 <p>See the Maven documentation for more information about the available build options.</p>
 <p>Note that you need Java 7 or higher to build Tika.</p></div>
 <div class="section">
@@ -118,36 +117,31 @@
     &lt;groupId&gt;org.apache.tika&lt;/groupId&gt;
     &lt;artifactId&gt;tika-core&lt;/artifactId&gt;
     &lt;version&gt;1.12&lt;/version&gt;
-  &lt;/dependency&gt;
-</pre></div>
+  &lt;/dependency&gt;</pre></div>
 <p>If you want to use Tika to parse documents (instead of simply detecting document types, etc.), you'll want to depend on <tt> tika-parsers </tt> instead: </p>
 <div>
 <pre>  &lt;dependency&gt;
     &lt;groupId&gt;org.apache.tika&lt;/groupId&gt;
     &lt;artifactId&gt;tika-parsers&lt;/artifactId&gt;
     &lt;version&gt;1.12&lt;/version&gt;
-  &lt;/dependency&gt;
-</pre></div>
+  &lt;/dependency&gt;</pre></div>
 <p>Note that adding this dependency will introduce a number of transitive dependencies to your project, including one on tika-core. You need to make sure that these dependencies won't conflict with your existing project dependencies. You can use the following command in the tika-parsers directory to get a full listing of all the dependencies.</p>
 <div>
-<pre>$ mvn dependency:tree | grep :compile
-</pre></div></div>
+<pre>$ mvn dependency:tree | grep :compile</pre></div></div>
 <div class="section">
 <h2><a name="Using_Tika_in_a_Gradle-built_project"></a>Using Tika in a Gradle-built project</h2>
 <p>To add a dependency on Apache Tika to your Gradle built project, including the full set of parsers, you should depend on the <tt> tika-parsers </tt> artifact:</p>
 <div>
 <pre>dependencies {
     runtime 'org.apache.tika:tika-parsers:1.12'
-}
-</pre></div></div>
+}</pre></div></div>
 <div class="section">
 <h2><a name="Using_Tika_in_an_Ant_project"></a>Using Tika in an Ant project</h2>
 <p>If you are using <a class="externalLink" href="http://ant.apache.org/ivy/">Apache Ivy</a> as your dependency manager tool with Ant, then to include Tika with the full set of parsers, you should depend on the <tt> tika-parsers </tt> artifact like this:</p>
 <div>
 <pre>    &lt;dependencies&gt;
         &lt;dependency org=&quot;org.apache.tika&quot; name=&quot;tika-parsers&quot; rev=&quot;1.12&quot;/&gt;
-    &lt;/dependencies&gt;
-</pre></div>
+    &lt;/dependencies&gt;</pre></div>
 <p>Otherwise, probably the easiest way to use Tika is to include the full <tt> tika-app </tt> jar on your classpath. For just core functionality, you can add the <tt> tika-core </tt> jar, but be aware that the full set of parsers have a large number of dependencies which must be included which is very fiddly to do by hand with Ant! To include Tika in your Ant project, you should do something like:</p>
 <div>
 <pre>&lt;classpath&gt;
@@ -158,8 +152,7 @@
   &lt;!-- or: Tika with all Parsers--&gt;
   &lt;pathelement location=&quot;path/to/tika-app-${tika.version}.jar&quot;/&gt;
 
-&lt;/classpath&gt;
-</pre></div></div>
+&lt;/classpath&gt;</pre></div></div>
 <div class="section">
 <h2><a name="Using_Tika_as_a_command_line_utility"></a>Using Tika as a command line utility</h2>
 <p>The Tika application jar (tika-app-*.jar) can be used as a command line utility for extracting text content and metadata from all sorts of files. This runnable jar contains all the dependencies it needs, so you don't need to worry about classpath settings to run it.</p>
@@ -229,15 +222,13 @@ Description:
 
     Use the &quot;--server&quot; (or &quot;-s&quot;) option to start the
     Apache Tika server. The server will listen to the
-    ports you specify as one or more arguments.
-</pre></div>
+    ports you specify as one or more arguments.</pre></div>
 <p>You can also use the jar as a component in a Unix pipeline or as an external tool in many scripting languages.</p>
 <div>
 <pre># Check if an Internet resource contains a specific keyword
 curl http://.../document.doc \
   | java -jar tika-app.jar --text \
-  | grep -q keyword
-</pre></div></div>
+  | grep -q keyword</pre></div></div>
 <div class="section">
 <h2><a name="Wrappers"></a>Wrappers</h2>
 <p>Several wrappers are available to use Tika in another programming language, such as <a class="externalLink" href="https://github.com/aviks/Taro.jl">Julia</a> or <a class="externalLink" href="https://github.com/chrismattmann/tika-python">Python</a>.</p></div>

Modified: tika/site/publish/1.13/gettingstarted.html
URL: http://svn.apache.org/viewvc/tika/site/publish/1.13/gettingstarted.html?rev=1867122&r1=1867121&r2=1867122&view=diff
==============================================================================
--- tika/site/publish/1.13/gettingstarted.html (original)
+++ tika/site/publish/1.13/gettingstarted.html Wed Sep 18 13:50:40 2019
@@ -89,11 +89,10 @@
 <p>This document describes how to build Apache Tika from sources and how to start using Tika in an application.</p></div>
 <div class="section">
 <h2><a name="Getting_and_building_the_sources"></a>Getting and building the sources</h2>
-<p>To build Tika from sources you first need to either <a href="../download.html">download</a> a source release or <a href="../source-repository.html">checkout</a> the latest sources from version control.</p>
+<p>To build Tika from sources you first need to either <a href="../download.html">download</a> a source release or <a href="../contribute.html#Source_Code">checkout</a> the latest sources from version control.</p>
 <p>Once you have the sources, you can build them using the <a class="externalLink" href="http://maven.apache.org/">Maven 2</a> build system. Executing the following command in the base directory will build the sources and install the resulting artifacts in your local Maven repository.</p>
 <div>
-<pre>mvn install
-</pre></div>
+<pre>mvn install</pre></div>
 <p>See the Maven documentation for more information about the available build options.</p>
 <p>Note that you need Java 7 or higher to build Tika.</p></div>
 <div class="section">
@@ -118,36 +117,31 @@
     &lt;groupId&gt;org.apache.tika&lt;/groupId&gt;
     &lt;artifactId&gt;tika-core&lt;/artifactId&gt;
     &lt;version&gt;1.13&lt;/version&gt;
-  &lt;/dependency&gt;
-</pre></div>
+  &lt;/dependency&gt;</pre></div>
 <p>If you want to use Tika to parse documents (instead of simply detecting document types, etc.), you'll want to depend on <tt> tika-parsers </tt> instead: </p>
 <div>
 <pre>  &lt;dependency&gt;
     &lt;groupId&gt;org.apache.tika&lt;/groupId&gt;
     &lt;artifactId&gt;tika-parsers&lt;/artifactId&gt;
     &lt;version&gt;1.13&lt;/version&gt;
-  &lt;/dependency&gt;
-</pre></div>
+  &lt;/dependency&gt;</pre></div>
 <p>Note that adding this dependency will introduce a number of transitive dependencies to your project, including one on tika-core. You need to make sure that these dependencies won't conflict with your existing project dependencies. You can use the following command in the tika-parsers directory to get a full listing of all the dependencies.</p>
 <div>
-<pre>$ mvn dependency:tree | grep :compile
-</pre></div></div>
+<pre>$ mvn dependency:tree | grep :compile</pre></div></div>
 <div class="section">
 <h2><a name="Using_Tika_in_a_Gradle-built_project"></a>Using Tika in a Gradle-built project</h2>
 <p>To add a dependency on Apache Tika to your Gradle built project, including the full set of parsers, you should depend on the <tt> tika-parsers </tt> artifact:</p>
 <div>
 <pre>dependencies {
     runtime 'org.apache.tika:tika-parsers:1.13'
-}
-</pre></div></div>
+}</pre></div></div>
 <div class="section">
 <h2><a name="Using_Tika_in_an_Ant_project"></a>Using Tika in an Ant project</h2>
 <p>If you are using <a class="externalLink" href="http://ant.apache.org/ivy/">Apache Ivy</a> as your dependency manager tool with Ant, then to include Tika with the full set of parsers, you should depend on the <tt> tika-parsers </tt> artifact like this:</p>
 <div>
 <pre>    &lt;dependencies&gt;
         &lt;dependency org=&quot;org.apache.tika&quot; name=&quot;tika-parsers&quot; rev=&quot;1.13&quot;/&gt;
-    &lt;/dependencies&gt;
-</pre></div>
+    &lt;/dependencies&gt;</pre></div>
 <p>Otherwise, probably the easiest way to use Tika is to include the full <tt> tika-app </tt> jar on your classpath. For just core functionality, you can add the <tt> tika-core </tt> jar, but be aware that the full set of parsers have a large number of dependencies which must be included which is very fiddly to do by hand with Ant! To include Tika in your Ant project, you should do something like:</p>
 <div>
 <pre>&lt;classpath&gt;
@@ -158,8 +152,7 @@
   &lt;!-- or: Tika with all Parsers--&gt;
   &lt;pathelement location=&quot;path/to/tika-app-${tika.version}.jar&quot;/&gt;
 
-&lt;/classpath&gt;
-</pre></div></div>
+&lt;/classpath&gt;</pre></div></div>
 <div class="section">
 <h2><a name="Using_Tika_as_a_command_line_utility"></a>Using Tika as a command line utility</h2>
 <p>The Tika application jar (tika-app-*.jar) can be used as a command line utility for extracting text content and metadata from all sorts of files. This runnable jar contains all the dependencies it needs, so you don't need to worry about classpath settings to run it.</p>
@@ -229,15 +222,13 @@ Description:
 
     Use the &quot;--server&quot; (or &quot;-s&quot;) option to start the
     Apache Tika server. The server will listen to the
-    ports you specify as one or more arguments.
-</pre></div>
+    ports you specify as one or more arguments.</pre></div>
 <p>You can also use the jar as a component in a Unix pipeline or as an external tool in many scripting languages.</p>
 <div>
 <pre># Check if an Internet resource contains a specific keyword
 curl http://.../document.doc \
   | java -jar tika-app.jar --text \
-  | grep -q keyword
-</pre></div></div>
+  | grep -q keyword</pre></div></div>
 <div class="section">
 <h2><a name="Wrappers"></a>Wrappers</h2>
 <p>Several wrappers are available to use Tika in another programming language, such as <a class="externalLink" href="https://github.com/aviks/Taro.jl">Julia</a> or <a class="externalLink" href="https://github.com/chrismattmann/tika-python">Python</a>.</p></div>

Modified: tika/site/publish/1.14/gettingstarted.html
URL: http://svn.apache.org/viewvc/tika/site/publish/1.14/gettingstarted.html?rev=1867122&r1=1867121&r2=1867122&view=diff
==============================================================================
--- tika/site/publish/1.14/gettingstarted.html (original)
+++ tika/site/publish/1.14/gettingstarted.html Wed Sep 18 13:50:40 2019
@@ -89,11 +89,10 @@
 <p>This document describes how to build Apache Tika from sources and how to start using Tika in an application.</p></div>
 <div class="section">
 <h2><a name="Getting_and_building_the_sources"></a>Getting and building the sources</h2>
-<p>To build Tika from sources you first need to either <a href="../download.html">download</a> a source release or <a href="../source-repository.html">checkout</a> the latest sources from version control.</p>
+<p>To build Tika from sources you first need to either <a href="../download.html">download</a> a source release or <a href="../contribute.html#Source_Code">checkout</a> the latest sources from version control.</p>
 <p>Once you have the sources, you can build them using the <a class="externalLink" href="http://maven.apache.org/">Maven 2</a> build system. Executing the following command in the base directory will build the sources and install the resulting artifacts in your local Maven repository.</p>
 <div>
-<pre>mvn install
-</pre></div>
+<pre>mvn install</pre></div>
 <p>See the Maven documentation for more information about the available build options.</p>
 <p>Note that you need Java 7 or higher to build Tika.</p></div>
 <div class="section">
@@ -118,36 +117,31 @@
     &lt;groupId&gt;org.apache.tika&lt;/groupId&gt;
     &lt;artifactId&gt;tika-core&lt;/artifactId&gt;
     &lt;version&gt;1.14&lt;/version&gt;
-  &lt;/dependency&gt;
-</pre></div>
+  &lt;/dependency&gt;</pre></div>
 <p>If you want to use Tika to parse documents (instead of simply detecting document types, etc.), you'll want to depend on <tt> tika-parsers </tt> instead: </p>
 <div>
 <pre>  &lt;dependency&gt;
     &lt;groupId&gt;org.apache.tika&lt;/groupId&gt;
     &lt;artifactId&gt;tika-parsers&lt;/artifactId&gt;
     &lt;version&gt;1.14&lt;/version&gt;
-  &lt;/dependency&gt;
-</pre></div>
+  &lt;/dependency&gt;</pre></div>
 <p>Note that adding this dependency will introduce a number of transitive dependencies to your project, including one on tika-core. You need to make sure that these dependencies won't conflict with your existing project dependencies. You can use the following command in the tika-parsers directory to get a full listing of all the dependencies.</p>
 <div>
-<pre>$ mvn dependency:tree | grep :compile
-</pre></div></div>
+<pre>$ mvn dependency:tree | grep :compile</pre></div></div>
 <div class="section">
 <h2><a name="Using_Tika_in_a_Gradle-built_project"></a>Using Tika in a Gradle-built project</h2>
 <p>To add a dependency on Apache Tika to your Gradle built project, including the full set of parsers, you should depend on the <tt> tika-parsers </tt> artifact:</p>
 <div>
 <pre>dependencies {
     runtime 'org.apache.tika:tika-parsers:1.14'
-}
-</pre></div></div>
+}</pre></div></div>
 <div class="section">
 <h2><a name="Using_Tika_in_an_Ant_project"></a>Using Tika in an Ant project</h2>
 <p>If you are using <a class="externalLink" href="http://ant.apache.org/ivy/">Apache Ivy</a> as your dependency manager tool with Ant, then to include Tika with the full set of parsers, you should depend on the <tt> tika-parsers </tt> artifact like this:</p>
 <div>
 <pre>    &lt;dependencies&gt;
         &lt;dependency org=&quot;org.apache.tika&quot; name=&quot;tika-parsers&quot; rev=&quot;1.14&quot;/&gt;
-    &lt;/dependencies&gt;
-</pre></div>
+    &lt;/dependencies&gt;</pre></div>
 <p>Otherwise, probably the easiest way to use Tika is to include the full <tt> tika-app </tt> jar on your classpath. For just core functionality, you can add the <tt> tika-core </tt> jar, but be aware that the full set of parsers have a large number of dependencies which must be included which is very fiddly to do by hand with Ant! To include Tika in your Ant project, you should do something like:</p>
 <div>
 <pre>&lt;classpath&gt;
@@ -158,8 +152,7 @@
   &lt;!-- or: Tika with all Parsers--&gt;
   &lt;pathelement location=&quot;path/to/tika-app-${tika.version}.jar&quot;/&gt;
 
-&lt;/classpath&gt;
-</pre></div></div>
+&lt;/classpath&gt;</pre></div></div>
 <div class="section">
 <h2><a name="Using_Tika_as_a_command_line_utility"></a>Using Tika as a command line utility</h2>
 <p>The Tika application jar (tika-app-*.jar) can be used as a command line utility for extracting text content and metadata from all sorts of files. This runnable jar contains all the dependencies it needs, so you don't need to worry about classpath settings to run it.</p>
@@ -229,15 +222,13 @@ Description:
 
     Use the &quot;--server&quot; (or &quot;-s&quot;) option to start the
     Apache Tika server. The server will listen to the
-    ports you specify as one or more arguments.
-</pre></div>
+    ports you specify as one or more arguments.</pre></div>
 <p>You can also use the jar as a component in a Unix pipeline or as an external tool in many scripting languages.</p>
 <div>
 <pre># Check if an Internet resource contains a specific keyword
 curl http://.../document.doc \
   | java -jar tika-app.jar --text \
-  | grep -q keyword
-</pre></div></div>
+  | grep -q keyword</pre></div></div>
 <div class="section">
 <h2><a name="Wrappers"></a>Wrappers</h2>
 <p>Several wrappers are available to use Tika in another programming language, such as <a class="externalLink" href="https://github.com/aviks/Taro.jl">Julia</a> or <a class="externalLink" href="https://github.com/chrismattmann/tika-python">Python</a>.</p></div>

Modified: tika/site/publish/1.15/gettingstarted.html
URL: http://svn.apache.org/viewvc/tika/site/publish/1.15/gettingstarted.html?rev=1867122&r1=1867121&r2=1867122&view=diff
==============================================================================
--- tika/site/publish/1.15/gettingstarted.html (original)
+++ tika/site/publish/1.15/gettingstarted.html Wed Sep 18 13:50:40 2019
@@ -89,11 +89,10 @@
 <p>This document describes how to build Apache Tika from sources and how to start using Tika in an application.</p></div>
 <div class="section">
 <h2><a name="Getting_and_building_the_sources"></a>Getting and building the sources</h2>
-<p>To build Tika from sources you first need to either <a href="../download.html">download</a> a source release or <a href="../source-repository.html">checkout</a> the latest sources from version control.</p>
+<p>To build Tika from sources you first need to either <a href="../download.html">download</a> a source release or <a href="../contribute.html#Source_Code">checkout</a> the latest sources from version control.</p>
 <p>Once you have the sources, you can build them using the <a class="externalLink" href="http://maven.apache.org/">Maven 2</a> build system. Executing the following command in the base directory will build the sources and install the resulting artifacts in your local Maven repository.</p>
 <div>
-<pre>mvn install
-</pre></div>
+<pre>mvn install</pre></div>
 <p>See the Maven documentation for more information about the available build options.</p>
 <p>Note that you need Java 7 or higher to build Tika.</p></div>
 <div class="section">
@@ -118,36 +117,31 @@
     &lt;groupId&gt;org.apache.tika&lt;/groupId&gt;
     &lt;artifactId&gt;tika-core&lt;/artifactId&gt;
     &lt;version&gt;1.15&lt;/version&gt;
-  &lt;/dependency&gt;
-</pre></div>
+  &lt;/dependency&gt;</pre></div>
 <p>If you want to use Tika to parse documents (instead of simply detecting document types, etc.), you'll want to depend on <tt> tika-parsers </tt> instead: </p>
 <div>
 <pre>  &lt;dependency&gt;
     &lt;groupId&gt;org.apache.tika&lt;/groupId&gt;
     &lt;artifactId&gt;tika-parsers&lt;/artifactId&gt;
     &lt;version&gt;1.15&lt;/version&gt;
-  &lt;/dependency&gt;
-</pre></div>
+  &lt;/dependency&gt;</pre></div>
 <p>Note that adding this dependency will introduce a number of transitive dependencies to your project, including one on tika-core. You need to make sure that these dependencies won't conflict with your existing project dependencies. You can use the following command in the tika-parsers directory to get a full listing of all the dependencies.</p>
 <div>
-<pre>$ mvn dependency:tree | grep :compile
-</pre></div></div>
+<pre>$ mvn dependency:tree | grep :compile</pre></div></div>
 <div class="section">
 <h2><a name="Using_Tika_in_a_Gradle-built_project"></a>Using Tika in a Gradle-built project</h2>
 <p>To add a dependency on Apache Tika to your Gradle built project, including the full set of parsers, you should depend on the <tt> tika-parsers </tt> artifact:</p>
 <div>
 <pre>dependencies {
     runtime 'org.apache.tika:tika-parsers:1.15'
-}
-</pre></div></div>
+}</pre></div></div>
 <div class="section">
 <h2><a name="Using_Tika_in_an_Ant_project"></a>Using Tika in an Ant project</h2>
 <p>If you are using <a class="externalLink" href="http://ant.apache.org/ivy/">Apache Ivy</a> as your dependency manager tool with Ant, then to include Tika with the full set of parsers, you should depend on the <tt> tika-parsers </tt> artifact like this:</p>
 <div>
 <pre>    &lt;dependencies&gt;
         &lt;dependency org=&quot;org.apache.tika&quot; name=&quot;tika-parsers&quot; rev=&quot;1.15&quot;/&gt;
-    &lt;/dependencies&gt;
-</pre></div>
+    &lt;/dependencies&gt;</pre></div>
 <p>Otherwise, probably the easiest way to use Tika is to include the full <tt> tika-app </tt> jar on your classpath. For just core functionality, you can add the <tt> tika-core </tt> jar, but be aware that the full set of parsers have a large number of dependencies which must be included which is very fiddly to do by hand with Ant! To include Tika in your Ant project, you should do something like:</p>
 <div>
 <pre>&lt;classpath&gt;
@@ -158,8 +152,7 @@
   &lt;!-- or: Tika with all Parsers--&gt;
   &lt;pathelement location=&quot;path/to/tika-app-${tika.version}.jar&quot;/&gt;
 
-&lt;/classpath&gt;
-</pre></div></div>
+&lt;/classpath&gt;</pre></div></div>
 <div class="section">
 <h2><a name="Using_Tika_as_a_command_line_utility"></a>Using Tika as a command line utility</h2>
 <p>The Tika application jar (tika-app-*.jar) can be used as a command line utility for extracting text content and metadata from all sorts of files. This runnable jar contains all the dependencies it needs, so you don't need to worry about classpath settings to run it.</p>
@@ -229,15 +222,13 @@ Description:
 
     Use the &quot;--server&quot; (or &quot;-s&quot;) option to start the
     Apache Tika server. The server will listen to the
-    ports you specify as one or more arguments.
-</pre></div>
+    ports you specify as one or more arguments.</pre></div>
 <p>You can also use the jar as a component in a Unix pipeline or as an external tool in many scripting languages.</p>
 <div>
 <pre># Check if an Internet resource contains a specific keyword
 curl http://.../document.doc \
   | java -jar tika-app.jar --text \
-  | grep -q keyword
-</pre></div></div>
+  | grep -q keyword</pre></div></div>
 <div class="section">
 <h2><a name="Wrappers"></a>Wrappers</h2>
 <p>Several wrappers are available to use Tika in another programming language, such as <a class="externalLink" href="https://github.com/aviks/Taro.jl">Julia</a> or <a class="externalLink" href="https://github.com/chrismattmann/tika-python">Python</a>.</p></div>

Modified: tika/site/publish/1.16/gettingstarted.html
URL: http://svn.apache.org/viewvc/tika/site/publish/1.16/gettingstarted.html?rev=1867122&r1=1867121&r2=1867122&view=diff
==============================================================================
--- tika/site/publish/1.16/gettingstarted.html (original)
+++ tika/site/publish/1.16/gettingstarted.html Wed Sep 18 13:50:40 2019
@@ -89,11 +89,10 @@
 <p>This document describes how to build Apache Tika from sources and how to start using Tika in an application.</p></div>
 <div class="section">
 <h2><a name="Getting_and_building_the_sources"></a>Getting and building the sources</h2>
-<p>To build Tika from sources you first need to either <a href="../download.html">download</a> a source release or <a href="../source-repository.html">checkout</a> the latest sources from version control.</p>
+<p>To build Tika from sources you first need to either <a href="../download.html">download</a> a source release or <a href="../contribute.html#Source_Code">checkout</a> the latest sources from version control.</p>
 <p>Once you have the sources, you can build them using the <a class="externalLink" href="http://maven.apache.org/">Maven 2</a> build system. Executing the following command in the base directory will build the sources and install the resulting artifacts in your local Maven repository.</p>
 <div>
-<pre>mvn install
-</pre></div>
+<pre>mvn install</pre></div>
 <p>See the Maven documentation for more information about the available build options.</p>
 <p>Note that you need Java 7 or higher to build Tika.</p></div>
 <div class="section">
@@ -118,36 +117,31 @@
     &lt;groupId&gt;org.apache.tika&lt;/groupId&gt;
     &lt;artifactId&gt;tika-core&lt;/artifactId&gt;
     &lt;version&gt;1.16&lt;/version&gt;
-  &lt;/dependency&gt;
-</pre></div>
+  &lt;/dependency&gt;</pre></div>
 <p>If you want to use Tika to parse documents (instead of simply detecting document types, etc.), you'll want to depend on <tt> tika-parsers </tt> instead: </p>
 <div>
 <pre>  &lt;dependency&gt;
     &lt;groupId&gt;org.apache.tika&lt;/groupId&gt;
     &lt;artifactId&gt;tika-parsers&lt;/artifactId&gt;
     &lt;version&gt;1.16&lt;/version&gt;
-  &lt;/dependency&gt;
-</pre></div>
+  &lt;/dependency&gt;</pre></div>
 <p>Note that adding this dependency will introduce a number of transitive dependencies to your project, including one on tika-core. You need to make sure that these dependencies won't conflict with your existing project dependencies. You can use the following command in the tika-parsers directory to get a full listing of all the dependencies.</p>
 <div>
-<pre>$ mvn dependency:tree | grep :compile
-</pre></div></div>
+<pre>$ mvn dependency:tree | grep :compile</pre></div></div>
 <div class="section">
 <h2><a name="Using_Tika_in_a_Gradle-built_project"></a>Using Tika in a Gradle-built project</h2>
 <p>To add a dependency on Apache Tika to your Gradle built project, including the full set of parsers, you should depend on the <tt> tika-parsers </tt> artifact:</p>
 <div>
 <pre>dependencies {
     runtime 'org.apache.tika:tika-parsers:1.16'
-}
-</pre></div></div>
+}</pre></div></div>
 <div class="section">
 <h2><a name="Using_Tika_in_an_Ant_project"></a>Using Tika in an Ant project</h2>
 <p>If you are using <a class="externalLink" href="http://ant.apache.org/ivy/">Apache Ivy</a> as your dependency manager tool with Ant, then to include Tika with the full set of parsers, you should depend on the <tt> tika-parsers </tt> artifact like this:</p>
 <div>
 <pre>    &lt;dependencies&gt;
         &lt;dependency org=&quot;org.apache.tika&quot; name=&quot;tika-parsers&quot; rev=&quot;1.16&quot;/&gt;
-    &lt;/dependencies&gt;
-</pre></div>
+    &lt;/dependencies&gt;</pre></div>
 <p>Otherwise, probably the easiest way to use Tika is to include the full <tt> tika-app </tt> jar on your classpath. For just core functionality, you can add the <tt> tika-core </tt> jar, but be aware that the full set of parsers have a large number of dependencies which must be included which is very fiddly to do by hand with Ant! To include Tika in your Ant project, you should do something like:</p>
 <div>
 <pre>&lt;classpath&gt;
@@ -158,8 +152,7 @@
   &lt;!-- or: Tika with all Parsers--&gt;
   &lt;pathelement location=&quot;path/to/tika-app-${tika.version}.jar&quot;/&gt;
 
-&lt;/classpath&gt;
-</pre></div></div>
+&lt;/classpath&gt;</pre></div></div>
 <div class="section">
 <h2><a name="Using_Tika_as_a_command_line_utility"></a>Using Tika as a command line utility</h2>
 <p>The Tika application jar (tika-app-*.jar) can be used as a command line utility for extracting text content and metadata from all sorts of files. This runnable jar contains all the dependencies it needs, so you don't need to worry about classpath settings to run it.</p>
@@ -229,15 +222,13 @@ Description:
 
     Use the &quot;--server&quot; (or &quot;-s&quot;) option to start the
     Apache Tika server. The server will listen to the
-    ports you specify as one or more arguments.
-</pre></div>
+    ports you specify as one or more arguments.</pre></div>
 <p>You can also use the jar as a component in a Unix pipeline or as an external tool in many scripting languages.</p>
 <div>
 <pre># Check if an Internet resource contains a specific keyword
 curl http://.../document.doc \
   | java -jar tika-app.jar --text \
-  | grep -q keyword
-</pre></div></div>
+  | grep -q keyword</pre></div></div>
 <div class="section">
 <h2><a name="Wrappers"></a>Wrappers</h2>
 <p>Several wrappers are available to use Tika in another programming language, such as <a class="externalLink" href="https://github.com/aviks/Taro.jl">Julia</a> or <a class="externalLink" href="https://github.com/chrismattmann/tika-python">Python</a>.</p></div>

Modified: tika/site/publish/1.17/gettingstarted.html
URL: http://svn.apache.org/viewvc/tika/site/publish/1.17/gettingstarted.html?rev=1867122&r1=1867121&r2=1867122&view=diff
==============================================================================
--- tika/site/publish/1.17/gettingstarted.html (original)
+++ tika/site/publish/1.17/gettingstarted.html Wed Sep 18 13:50:40 2019
@@ -89,11 +89,10 @@
 <p>This document describes how to build Apache Tika from sources and how to start using Tika in an application.</p></div>
 <div class="section">
 <h2><a name="Getting_and_building_the_sources"></a>Getting and building the sources</h2>
-<p>To build Tika from sources you first need to either <a href="../download.html">download</a> a source release or <a href="../source-repository.html">checkout</a> the latest sources from version control.</p>
+<p>To build Tika from sources you first need to either <a href="../download.html">download</a> a source release or <a href="../contribute.html#Source_Code">checkout</a> the latest sources from version control.</p>
 <p>Once you have the sources, you can build them using the <a class="externalLink" href="http://maven.apache.org/">Maven 2</a> build system. Executing the following command in the base directory will build the sources and install the resulting artifacts in your local Maven repository.</p>
 <div>
-<pre>mvn install
-</pre></div>
+<pre>mvn install</pre></div>
 <p>See the Maven documentation for more information about the available build options.</p>
 <p>Note that you need Java 7 or higher to build Tika.</p></div>
 <div class="section">
@@ -120,36 +119,31 @@
     &lt;groupId&gt;org.apache.tika&lt;/groupId&gt;
     &lt;artifactId&gt;tika-core&lt;/artifactId&gt;
     &lt;version&gt;1.17&lt;/version&gt;
-  &lt;/dependency&gt;
-</pre></div>
+  &lt;/dependency&gt;</pre></div>
 <p>If you want to use Tika to parse documents (instead of simply detecting document types, etc.), you'll want to depend on <tt> tika-parsers </tt> instead: </p>
 <div>
 <pre>  &lt;dependency&gt;
     &lt;groupId&gt;org.apache.tika&lt;/groupId&gt;
     &lt;artifactId&gt;tika-parsers&lt;/artifactId&gt;
     &lt;version&gt;1.17&lt;/version&gt;
-  &lt;/dependency&gt;
-</pre></div>
+  &lt;/dependency&gt;</pre></div>
 <p>Note that adding this dependency will introduce a number of transitive dependencies to your project, including one on tika-core. You need to make sure that these dependencies won't conflict with your existing project dependencies. You can use the following command in the tika-parsers directory to get a full listing of all the dependencies.</p>
 <div>
-<pre>$ mvn dependency:tree | grep :compile
-</pre></div></div>
+<pre>$ mvn dependency:tree | grep :compile</pre></div></div>
 <div class="section">
 <h2><a name="Using_Tika_in_a_Gradle-built_project"></a>Using Tika in a Gradle-built project</h2>
 <p>To add a dependency on Apache Tika to your Gradle built project, including the full set of parsers, you should depend on the <tt> tika-parsers </tt> artifact:</p>
 <div>
 <pre>dependencies {
     runtime 'org.apache.tika:tika-parsers:1.17'
-}
-</pre></div></div>
+}</pre></div></div>
 <div class="section">
 <h2><a name="Using_Tika_in_an_Ant_project"></a>Using Tika in an Ant project</h2>
 <p>If you are using <a class="externalLink" href="http://ant.apache.org/ivy/">Apache Ivy</a> as your dependency manager tool with Ant, then to include Tika with the full set of parsers, you should depend on the <tt> tika-parsers </tt> artifact like this:</p>
 <div>
 <pre>    &lt;dependencies&gt;
         &lt;dependency org=&quot;org.apache.tika&quot; name=&quot;tika-parsers&quot; rev=&quot;1.17&quot;/&gt;
-    &lt;/dependencies&gt;
-</pre></div>
+    &lt;/dependencies&gt;</pre></div>
 <p>Otherwise, probably the easiest way to use Tika is to include the full <tt> tika-app </tt> jar on your classpath. For just core functionality, you can add the <tt> tika-core </tt> jar, but be aware that the full set of parsers have a large number of dependencies which must be included which is very fiddly to do by hand with Ant! To include Tika in your Ant project, you should do something like:</p>
 <div>
 <pre>&lt;classpath&gt;
@@ -160,8 +154,7 @@
   &lt;!-- or: Tika with all Parsers--&gt;
   &lt;pathelement location=&quot;path/to/tika-app-${tika.version}.jar&quot;/&gt;
 
-&lt;/classpath&gt;
-</pre></div></div>
+&lt;/classpath&gt;</pre></div></div>
 <div class="section">
 <h2><a name="Using_Tika_as_a_command_line_utility"></a>Using Tika as a command line utility</h2>
 <p>The Tika application jar (tika-app-*.jar) can be used as a command line utility for extracting text content and metadata from all sorts of files. This runnable jar contains all the dependencies it needs, so you don't need to worry about classpath settings to run it.</p>
@@ -277,15 +270,13 @@ Batch Options:
 
     To modify child process jvm args, prepend &quot;J&quot; as in:
     -JXmx4g or -JDlog4j.configuration=file:log4j.xml.
-
 </pre></div>
 <p>You can also use the jar as a component in a Unix pipeline or as an external tool in many scripting languages.</p>
 <div>
 <pre># Check if an Internet resource contains a specific keyword
 curl http://.../document.doc \
   | java -jar tika-app.jar --text \
-  | grep -q keyword
-</pre></div></div>
+  | grep -q keyword</pre></div></div>
 <div class="section">
 <h2><a name="Wrappers"></a>Wrappers</h2>
 <p>Several wrappers are available to use Tika in another programming language, such as <a class="externalLink" href="https://github.com/aviks/Taro.jl">Julia</a> or <a class="externalLink" href="https://github.com/chrismattmann/tika-python">Python</a>.</p></div>